.NET
-
Dear all, I'm just starting out in .NET and creating a simple application to store the personel information on staff, e.g. name, address, age etc etc. My question is which would be the best storage for this type of information. I'm considering XML or a database. The application will be run on a single machine so it just needs to be something simple. It would be nice to be able to load the information into Excel too... Any pointers would be a real help so I start down the right path. Many thanks Tom
-
Dear all, I'm just starting out in .NET and creating a simple application to store the personel information on staff, e.g. name, address, age etc etc. My question is which would be the best storage for this type of information. I'm considering XML or a database. The application will be run on a single machine so it just needs to be something simple. It would be nice to be able to load the information into Excel too... Any pointers would be a real help so I start down the right path. Many thanks Tom
-
I found SQLite to be a very good and simple storage media for small databases. There's a ready-to-use DLL provided by Mono, but it also works fine with normal .NET applications regards