Reputation: 9154
I need an embedded database solution that can be used from within an ASP.NET application. Unfortunately, it seems that SQL Server compact edition does not support ASP.NET and my web host does not avail me SQL Server. MS Access is an option. But would like to have some better open source solutions. Thank you.
Upvotes: 0
Views: 2411
Reputation: 11
If you don't mind against network database model, you can try this: https://github.com/mdsoftware/mData. Lisp-like data processing language and expression compiler/execution machine are an options.
Upvotes: 0
Reputation: 4219
There are quite a few options:
I would recommend Sqlite.
Upvotes: 3
Reputation: 3616
You can use SQllite which is a file based small scale database. It does have limitation however.
Sql express still needs to be installed on the server so you would have to check the hosting provider.
Upvotes: 0
Reputation: 65361
SQL Server Express Edition is an option, but it may not be appropriate for high volume sites as it has a connections limit.
Upvotes: 0