Is there a flat-file database that is supported by Silverlight?
- by Anton Kanevsky
I am looking for a flat-file (or serverless) database that I can connect to a C# Silverlight application.
There has to be one, but I can't find anything.
EDIT: SQLite is an example of a flat-file database. A flat-file database in my view is any database that does not require a server. Unfortunately, SQLite does not work with Silverlight.
What I want to achieve is to be able to store, update and delete entries from the database. In my application, there is a chart with sectors and nodes. I want to be able to edit sectors and store their settings in the database, and I want to be able to add/retrieve/edit/delete nodes on the chart.
The database needs to be free for educational purposes.
Thanks.