In This Topic
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.
Overload List
| Overload | Description |
| ExecuteDataset(MySqlConnection,String,MySqlParameter[]) | 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. |
| ExecuteDataset(String,String,MySqlParameter[]) | 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. |
| ExecuteDataset(String,String) | 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. |
| ExecuteDataset(MySqlConnection,String) | 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. |
See Also