[+/-]
Connector/NET comprises several classes that are used to connect to the database, execute queries and statements, and manage query results.
The following are the major classes of Connector/NET:
          MySqlCommand: Represents an SQL statement
          to execute against a MySQL database.
        
          MySqlCommandBuilder: Automatically
          generates single-table commands used to reconcile changes made
          to a DataSet with the associated MySQL database.
        
          MySqlConnection: Represents an open
          connection to a MySQL Server database.
        
          MySqlDataAdapter: Represents a set of data
          commands and a database connection that are used to fill a
          dataset and update a MySQL database.
        
          MySqlDataReader: Provides a means of
          reading a forward-only stream of rows from a MySQL database.
        
          MySqlException: The exception that is
          thrown when MySQL returns an error.
        
          MySqlHelper: Helper class that makes it
          easier to work with the provider.
        
          MySqlTransaction: Represents an SQL
          transaction to be made in a MySQL database.
        
This section contains basic information and examples for each of the above classes. For a more detailed reference guide please see Sección 25.2.4, “Connector/NET Reference”.
Ésta es una traducción del manual de referencia de MySQL, que puede encontrarse en dev.mysql.com. El manual de referencia original de MySQL está escrito en inglés, y esta traducción no necesariamente está tan actualizada como la versión original. Para cualquier sugerencia sobre la traducción y para señalar errores de cualquier tipo, no dude en dirigirse a mysql-es@vespito.com.

