I am working on a fairly simple reporting application. It will (after some time) hold a fair amount of data. As an over view of the project itself its going to hold records of how much work was done, by who, how many stitches were used in an embroidery project and other easy to keep track of data but will pile up over time. When reporting I would like to be able to keep track of all of this, yearly, monthly, ect.
I was just looking for some options as to storing the data. The simple way would be text files but It doesn't really seem to 'professional' to me. A SQL database seems like over kill and since this program is likely to only be on one or two computers there isn't a real need to have to install a SQLlite on to them. I also realize that there is a way to use SQL database files (.mdf's) but at that point I may as well just connect to a sql database.
Any suggestions?