Mono Class Library: Overview

MySql.Data.MySqlClient.MySqlHelper: Members

The members of MySql.Data.MySqlClient.MySqlHelper are listed below.

See Also: Inherited members from System.Object

Public Methods

static
DoubleQuoteString(string) : string
Documentation for this section has not yet been entered.
static
EscapeString(string) : string
Escapes the string.
static
ExecuteDataRow(string, string, params MySqlParameter[]) : System.Data.DataRow
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.
static
ExecuteDataset(MySqlConnection, string) : System.Data.DataSet
Executes a single SQL command and returns the resultset in a System.Data.DataSet. The state of the MySql.Data.MySqlClient.MySqlConnection object remains unchanged after execution of this method.
static
ExecuteDataset(string, string) : System.Data.DataSet
Executes a single SQL command and returns the resultset in a System.Data.DataSet. A new MySqlConnection object is created, opened, and closed during this method.
static
ExecuteDataset(MySqlConnection, string, params MySqlParameter[]) : System.Data.DataSet
Executes a single SQL command and returns the resultset in a System.Data.DataSet. The state of the MySql.Data.MySqlClient.MySqlConnection object remains unchanged after execution of this method.
static
ExecuteDataset(string, string, params MySqlParameter[]) : System.Data.DataSet
Executes a single SQL command and returns the resultset in a System.Data.DataSet. A new MySqlConnection object is created, opened, and closed during this method.
static
ExecuteNonQuery(MySqlConnection, string, params MySqlParameter[]) : int
Executes a single command against a MySQL database. The MySql.Data.MySqlClient.MySqlConnection is assumed to be open when the method is called and remains open after the method completes.
static
ExecuteNonQuery(string, string, params MySqlParameter[]) : int
Executes a single command against a MySQL database. A new MySql.Data.MySqlClient.MySqlConnection is created using the MySqlConnection.ConnectionString given.
static
ExecuteReader(string, string) : MySqlDataReader
Executes a single command against a MySQL database.
static
ExecuteReader(string, string, params MySqlParameter[]) : MySqlDataReader
Executes a single command against a MySQL database.
static
ExecuteScalar(MySqlConnection, string) : object
Execute a single command against a MySQL database.
static
ExecuteScalar(string, string) : object
Execute a single command against a MySQL database.
static
ExecuteScalar(MySqlConnection, string, params MySqlParameter[]) : object
Execute a single command against a MySQL database.
static
ExecuteScalar(string, string, params MySqlParameter[]) : object
Execute a single command against a MySQL database.
static
UpdateDataSet(string, string, System.Data.DataSet, string)
Updates the given table with data from the given System.Data.DataSet