Web Service to expose a generic database
I'm looking for a web service that can be installed on a machine and access a generic database (SQL Server and MySQL being the alternatives at the moment), exposing CRUD functionalities.
开发者_如何学编程I should be able to write it myself, but I prefer an industrial grade solution.
any advice?
thank you in advance
stefano
I would use a factory like this one:
http://www.codeproject.com/KB/database/DBaseFactGenerics.aspx
You can connect to any database for which .Net has a provider.
精彩评论