[RESOLVED] textfile as database
Hi,
I'm writing a simple program. The program will save 2 values, Website title and website URL. I normally use a database to store data, however this time if possible I would like to use a simple textfile.
I was wondering how I should initially save the data to the textfile to later recognize the website title and url.
Any advice is appriciated
Thanks
Re: [RESOLVED] textfile as database
Just to let you know that certain text files (eg CSV, XML, etc.) can be queried just like a database using ADO.Net... As long as you are using SELECT queries, you can still use the text files as your data-store. If you are planning to run UPDATE queries, however, then an actual database is easier...