Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a flat-file database that is supported by Silverlight? [closed]

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.

EDIT: This database I need for use on a cellphone. So there can't be any service that listens. When I say "serverless", I mean serverless, I cannot use even a localhost server. It needs to read data from a file and write to the file.

Thanks.

like image 371
akanevsky Avatar asked Feb 13 '11 19:02

akanevsky


1 Answers

Have a look at these:

  • http://siaqodb.com/
  • http://code.google.com/p/csharp-sqlite/
like image 55
CesarGon Avatar answered Oct 27 '22 14:10

CesarGon