Microsoft Visual C# 2005 Unleashed
Creating a custom ADO.NET data provider is definitely a long process that needs to be designed thoroughly before proceeding. However, the use of standard interfaces and base classes makes the task slightly easier. There aren't all that many reasons to create your own custom ADO.NET data provider. If you find that you need to access data that you want to expose through the connection/command/reader pattern, there is an extremely good chance that the underlying data can be accessed using either ODBC or OLE DB. Remember that you can use OLE DB to access data sources like Excel spreadsheets and even text files. However, if the data is proprietary, or can't be accessed through ODBC, OLE DB, Oracle, or SQL Server, you might find yourself in a situation where you want to create a data provider to expose your data to the .NET Framework in a relational manner. To do this, you'll need to create a class library that contains implementations of several interfaces. To create a minimal data provider, you will need to create the following:
In the past, some example data providers have been created for ADO.NET that provide exposure for Microsoft Message Queues (MSMQ), Active Directory (AD), and even runtime type information provided by a Reflection data provider. It's beyond the scope of this chapter to walk you through the implementation of a custom provider. In addition to providing implementations of a command, a data reader, a connection, and a data adapter, your data provider would also have to take into account things like transactional support and whether or not you want your provider to register itself with the list of data provider factories. |