Coming soon: KMyMoney 1.0
Coming soon: KMyMoney 1.0
Posted Aug 28, 2009 16:43 UTC (Fri) by jordanb (guest, #45668)In reply to: Coming soon: KMyMoney 1.0 by astrophoenix
Parent article: Coming soon: KMyMoney 1.0
Actually if you're trying to manipulate the data 'out of band', or make an external tool that acts on a program's data, then sqlite is a dream format since it gives you a very powerful structured data manipulation interface (the SQL language).
If you want to keep the data in version control, you can do a data dump from the database file into a text file and then check *that* into VCS:
echo ".dump" | sqlite3 grampsdb > my_gramps.sql
You can also do that, of course, and use your regex masher on that sql file, and then import it back into the database. ;)
Posted Aug 28, 2009 16:48 UTC (Fri)
by dlang (guest, #313)
[Link]
Coming soon: KMyMoney 1.0
