Name | Description | |
---|---|---|
![]() ![]() | EscapeString | Escapes the string. |
![]() ![]() | ExecuteDataRow | Executes a single SQL command and returns the first row of the resultset. A new MySqlConnection object is created, opened, and closed during this method. |
![]() ![]() | ExecuteDataset | Overloaded. Executes a single SQL command and returns the resultset in a System.Data.DataSet. The state of the MySqlConnection object remains unchanged after execution of this method. |
![]() ![]() | ExecuteNonQuery | Overloaded. Executes a single command against a MySQL database. The MySqlConnection is assumed to be open when the method is called and remains open after the method completes. |
![]() ![]() | ExecuteReader | Overloaded. Executes a single command against a MySQL database, possibly inside an existing transaction, and returns MySqlDataReader as the result. |
![]() ![]() | ExecuteScalar | Overloaded. Execute a single command against a MySQL database and returns a single value as the result. |
![]() ![]() | UpdateDataSet | Updates the given table with data from the given System.Data.DataSet. |