Sklivvz
Sklivvz

Reputation: 31133

Implementing an ADO.NET layer

Are there any tutorials or how-to's that explain how to implement an ADO.NET layer?

That would include implementing a Connection class, etcetera.

I need to do this because I am querying an old proprietary system and I want to wrap the old APIs properly.

Upvotes: 0

Views: 356

Answers (2)

Matt
Matt

Reputation: 1902

I asked a question similar to this a while back. You may want to read through the answers there. The person who actually answered the question posted a link to a code project article that did a great job of explaining ado when working with MSAcess.

Where can I find an open source C# project that uses ADO.NET?

Upvotes: 0

Bork Blatt
Bork Blatt

Reputation: 3368

See "Building a Custom Data Provider for Use with the .NET Data Access Framework" at http://msdn.microsoft.com/en-us/magazine/cc301611.aspx

Also, Googling for "Custom ADO.NET Data Provider" should give you many possible answers.

Upvotes: 1

Related Questions