user310291
user310291

Reputation: 38190

Any ASP.NET Opensource project that works on both SQL Server and MS Access DB?

I searched on Google and I can't find any, do you know some ?

Upvotes: 1

Views: 113

Answers (1)

Kris van der Mast
Kris van der Mast

Reputation: 16613

Not that I'm aware. Most open source projects however use one specific database engine (which makes sense), or xml (for example dasBlog).

However you can always swap your SQL Server for MS Access in a project if you want. The provider system for membership etc in ASP.NET itself is already a great example of that possibility (though not open source as it comes from Microsoft). For example take a look at this tutorial: Using Access instead of SQL server for your ASP.NET Application Services.

Personally I would rather find it strange to see an open source project making use of 2 different, especially MS Access in the first place. People tend to use SQL Server Express or SQLite or SQL CE for something like this.

Upvotes: 1

Related Questions