--- In [email protected], "brother.gabriel" <brgabr...@...> wrote: > > Well, I had not thought of a columnar text file; I was using ini out of > instinct; but I need to pull data from individual fields without knowing > their value. I suppose that could be done with vectors? I am good to go > with ini files, but anything beyond that is going to be a learning curve.
Then go with ini. If you really just need to store the year month and an assoicate value, then one format is [year] 01=value 02=value etc ie use the year as the section, and the month as the key. It really depends on the exact data you want to process and how you want to process it.
