I wrote a reminder program that runs automatically on startup. I want to know if there is a way, other than SQL-Server, to store event, date and time data. I do not want to use SQL-Server for this work, because I think SQL-Server is very big for this simple task. I think that I can use a file to store data in it. What do you think about this?
|
feedback
|
|
For the part where to persist From this document (Managing User Data Deployment Guide, download):
So, I suggest using
There is another option - For the part how to persist your data to a file ... well, pick your favorite. You could use SQLite database which comes really lightweigt if you want more control and power or just use XML serialization to a file if you consider using SQLite an overkill. Or any of other viable options. | |||||
feedback
|
|
Some common ways to store information:
Registry entries are more safe regarding user actions. On the other hand, files can be easily deleted. You always have the option, to encrypt your information. As a side note, you can also use PostSharp to declare variables to be stored in your registry. The code becomes something like this:
I can provide code later if you need it... when I'm home again. | ||||
|
feedback
|
|
XML. .NET has classes that makes handling xml files easy. If you're saving structured data then XML might be your best bet. | |||
|
feedback
|
|
I have for very similar reasons tried some easy to deploy databases and yet use the knowledge i have. VistaDB 3.x and 4 are my first choice because they are very much SQL Server compaible and allows me to switch to sql server anytime i like. This supports EF too!!! Next is db4o by Versant which is very very handy. I use it mostly for quick prototyping but i have deployed to several small solutions and perfect for your kind of application. I hope that helps! | |||
|
feedback
|