Create a custom .Net Data Provider

  • Thread starter Thread starter Javier Ros
  • Start date Start date
J

Javier Ros

Hi guys,

I want to create a custom .Net DataProvider, I have see that I have to
build my Connection, DataAdapter, Command and DataReader class
inheriting/implementing IDbConnection, IDbDataAdapet, IDbCommand and
IDbDataReader interfaces respectly,

do you know an article about it?

Thanks in advance.

Javier Ros Moreno.
 
I want to create a custom .Net DataProvider, I have see that I have to
build my Connection, DataAdapter, Command and DataReader class
inheriting/implementing IDbConnection, IDbDataAdapet, IDbCommand and
IDbDataReader interfaces respectly,

do you know an article about it?

I created an open source one. You can see all the code for it here:

http://sourceforge.net/projects/genadonet

You can see what you need to implement, however, all the details of each
method will be totally different for whatever type of database you are
trying to connect to.

MySQL also has an open source .NET data provider...

http://sourceforge.net/projects/mysqlnet/

Michael Lang, MCSD
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top