Mono Class Library: OverviewMySql.Data.MySqlClient.MySqlHelper: Members |
The members of MySql.Data.MySqlClient.MySqlHelper are listed below.
See Also: Inherited members from System.Object
staticDoubleQuoteString(string) : string Documentation for this section has not yet been entered. staticEscapeString(string) : string Escapes the string. staticExecuteDataRow(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. staticExecuteDataset(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. staticExecuteDataset(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. staticExecuteDataset(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. staticExecuteDataset(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. staticExecuteNonQuery(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. staticExecuteNonQuery(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. staticExecuteReader(string, string) : MySqlDataReader Executes a single command against a MySQL database. staticExecuteReader(string, string, params MySqlParameter[]) : MySqlDataReader Executes a single command against a MySQL database. staticExecuteScalar(MySqlConnection, string) : object Execute a single command against a MySQL database. staticExecuteScalar(string, string) : object Execute a single command against a MySQL database. staticExecuteScalar(MySqlConnection, string, params MySqlParameter[]) : object Execute a single command against a MySQL database. staticExecuteScalar(string, string, params MySqlParameter[]) : object Execute a single command against a MySQL database. staticUpdateDataSet(string, string, System.Data.DataSet, string) Updates the given table with data from the given System.Data.DataSet