LWN: Comments on "Coming soon: KMyMoney 1.0" https://lwn.net/Articles/347546/ This is a special feed containing comments posted to the individual LWN article titled "Coming soon: KMyMoney 1.0". en-us Sat, 08 Nov 2025 01:12:38 +0000 Sat, 08 Nov 2025 01:12:38 +0000 https://www.rssboard.org/rss-specification lwn@lwn.net Coming soon: KMyMoney 1.0 https://lwn.net/Articles/349729/ https://lwn.net/Articles/349729/ sciurus Anyone looking for personal finance software should try <a href= http://homebank.free.fr/>Homebank</a>. Great interface, great features, GPL, license and it runs on GNU/Linux, FreeBSD, Microsoft Windows, MacOSX, Nokia N*** and Amiga. Sat, 29 Aug 2009 03:35:57 +0000 Coming soon: KMyMoney 1.0 https://lwn.net/Articles/349624/ https://lwn.net/Articles/349624/ dlang <div class="FormattedComment"> one advantage to manipulating things in SQL rather than in a flat file is that you don't have to worry as much about the structural elements (field seperators, allowed characters, field lengths, etc) as the app can (and should) have this data managed by the database engine.<br> </div> Fri, 28 Aug 2009 16:48:06 +0000 Coming soon: KMyMoney 1.0 https://lwn.net/Articles/349619/ https://lwn.net/Articles/349619/ jordanb <div class="FormattedComment"> One thing to keep in mind about sqlite is that the 'database' is just a file on the file system, and you can use the 'sqlite3' tool to open up and poke around in any sqlite file.<br> <p> 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).<br> <p> 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:<br> <p> echo ".dump" | sqlite3 grampsdb &gt; my_gramps.sql<br> <p> You can also do that, of course, and use your regex masher on that sql file, and then import it back into the database. ;)<br> <p> </div> Fri, 28 Aug 2009 16:43:24 +0000 Coming soon: KMyMoney 1.0 https://lwn.net/Articles/349583/ https://lwn.net/Articles/349583/ dlang <div class="FormattedComment"> I see the biggest is the data safety issue<br> <p> when making a change (no matter how trivial) you would need to write a modified version of the entire file and do the appropriate fsyncs (for the file and the metadata)<br> <p> with a database you just tell the database what changes you want done and it makes the changes (probably fare more efficiantly than you will, as well as being far less likely to have missed some corner case)<br> <p> searching a xml text file involves reading the file, parsing it, then walking the data in memory (or reading the file, parsing it as you go, and aborting the parsing when you have the data you need)<br> <p> databases have many tricks that they can use to speed the data access (indexes, binary data representation, etc)<br> <p> <p> as for locking the data in a 'hard for the user to use' format, I would say that putting it in a standard database that many different tools can readily access (in many cases making it look like a spreadsheet, but including dump/restore to/from flat text files) makes it pretty easy to get at the data.<br> <p> also, keep in mind that one commonly used database for this is sqlite. that database engine keeps all the data in one file (just as easy to check into a version control system), and does not require communication to a seperate daemon. it basicly acts as a file manipulation library in your software, so it has very low overhead.<br> <p> as for redundancy and failover, that can mean many things. if you want to have the data stored on a central box (rather than sitting on someone's laptop that can break, get lost/stolen, etc) databases can do failovers to backup boxes transparently to the user<br> <p> for a single home user this (usually) does not matter, for a small business this can be critical.<br> <p> In addition, with a database back-end it is relativly easy to allow multiple people to share access to the data at once. again, not a feature that a single home user normally cares about.<br> </div> Fri, 28 Aug 2009 16:23:52 +0000 Coming soon: KMyMoney 1.0 https://lwn.net/Articles/349570/ https://lwn.net/Articles/349570/ astrophoenix <div class="FormattedComment"> interesting. I see what you're saying. it makes theoretical sense.<br> <p> but I wonder where the crossover point is: i.e., how big does your dataset have to be before a user using the gui app will notice any difference between a database backend or an xml backend? <br> <p> because the other tradeoff is that it's a LOT simpler for a USER of the data to do unexpected things with the data if it's ascii.<br> <p> I suppose I could just export it to the ascii, do what I want with it, and then get used to the routine of importing it back from the ascii each time I run the gui app.<br> <p> before I was really thinking about the tradeoffs, the idea of a Free software project putting the data in a hard-for-the-user-to-use format seemed a bit jarring; technically the database format is still useable, but getting database redundancy and failover is a tad bit more work and more fragile than committing a text file to git or mercurial.<br> </div> Fri, 28 Aug 2009 15:29:46 +0000 Coming soon: KMyMoney 1.0 https://lwn.net/Articles/349407/ https://lwn.net/Articles/349407/ dlang <div class="FormattedComment"> using a database instead of a flat file will be far safer and faster to update.<br> <p> you can implement all this yourself (but not easily in a ascii xml file), but at that point you have duplicated the hard stuff that a database does.<br> <p> once you take the effort of converting your software to work with a database (delegating the data integrity, searching, indexing, etc tasks to the database) with an embedded database like sqlite, it's a small step to move to a full database that can offer you additional features (like replication and failover) for no additional application complexity (beyond the change to talk to that sort of database)<br> <p> the application should have the ability to do import and export through flat files, but it makes a _lot_ of sense to use a database instead of flat files (and especially instead of ascii XML files) for the main datastore.<br> </div> Thu, 27 Aug 2009 23:57:46 +0000 Coming soon: KMyMoney 1.0 https://lwn.net/Articles/349372/ https://lwn.net/Articles/349372/ astrophoenix <div class="FormattedComment"> what in the world is the big move to database backends? I like having the data stored in an ascii xml file...<br> <p> 'gramps' has already moved to a database storage model, and I hate it. I liked doing crazy ascii type stuff with the data, like being able to read it! or tweak stuff by hand occasionally. or manage it using git or mercurial. now if I simply open gramps, then close it, I get a bunch of binary changes that are meaningless; I didn't actually change any data.<br> <p> can anyone explain the advantage of using a database instead of an xml file for something like a personal accounting app?? <br> <p> frustrated, and loving ascii,<br> astrophoenix<br> </div> Thu, 27 Aug 2009 23:01:34 +0000 Coming soon: KMyMoney 1.0 https://lwn.net/Articles/348226/ https://lwn.net/Articles/348226/ jospoortvliet <div class="FormattedComment"> How about those? There is nothing which makes KDE apps not work in<br> Enlightenment or any other environment... The only two things about KDE<br> apps are the development platform and the community. In every other area<br> they're just applications which can run anywhere - from win and mac to KDE<br> and Gnome...<br> </div> Sat, 22 Aug 2009 09:51:11 +0000 Coming soon: KMyMoney 1.0 https://lwn.net/Articles/348101/ https://lwn.net/Articles/348101/ jhhaller <div class="FormattedComment"> Much of the recent buzz about platforms has been on Mobile applications. While desktop application may be good for the analysis and data storage, that without a mobile interface that much of the market may pass by this type of desktop application. Much of the discretionary spending happens outside the house, and carrying a laptop outside the house is a problem, especially when multiple people in a house are making independent decisions. At the very least, a mobile web interface to limited parts of the data would make it more useful.<br> </div> Fri, 21 Aug 2009 18:46:08 +0000 Coming soon: KMyMoney 1.0 https://lwn.net/Articles/348099/ https://lwn.net/Articles/348099/ morhippo <div class="FormattedComment"> You need to install one additional library (kdelibs) and that's it. Stop complaining.<br> </div> Fri, 21 Aug 2009 18:34:02 +0000 Coming soon: KMyMoney 1.0 https://lwn.net/Articles/348009/ https://lwn.net/Articles/348009/ golding <div class="FormattedComment"> What about those of us who do not use KDE? Or Gnome for that matter?<br> <p> I use Enlightenment without Gnome and GnuCash still seams to be best fit.<br> </div> Fri, 21 Aug 2009 08:03:58 +0000 OFX Working Well https://lwn.net/Articles/347768/ https://lwn.net/Articles/347768/ hisdad <div class="FormattedComment"> I switched from the .8 series to the .92 version to the CVS version to enjoy the use of OFX. That's well supported here in New Zealand. One of the best features is Payee Matching. This lets me use my Payee name in Kmymoney and match transactions coming from the bank.<br> <p> It makes things easy that previously were so tedious.<br> <p> Budgeting is good, with a flaw if your fiscal year is not a calendar year, it truncates the budget.<br> <p> Excellent piece of work.<br> <p> --john<br> </div> Thu, 20 Aug 2009 05:10:57 +0000