Using DbProviderFactory
The CData ADO.NET Provider for MySQL implements the MySQLProviderFactory class to enable you to write generic data access code to MySQL through the ADO.NET base classes.
Creating Data Access Objects with MySQLProviderFactory
The following sections show how to use the MySQLProviderFactory class to create objects like MySQLConnection, MySQLCommand, and MySQLDataAdapter in a generic way.
Register and Configure DbConnections
Register the provider to the configuration context and define the DbProviderFactory and DbConnection objects. See Creating DbConnections for a guide.
Querying Using DbCommands
Executing DbCommands describes how to use an existing DbProviderFactory and DbConnection object to execute queries to MySQL.