Represents a SQL statement or stored procedure to execute against a MySQL database.
For a list of all members of this type, see MySqlCommand members.
Devart.Common.DbCommandBase
Devart.Data.MySql.MySqlCommand
[Visual Basic]
Public Class MySqlCommand
Inherits DbCommandBase
Implements IComponent , IDbCommand , ICloneable , IDisposable [C#]
public class MySqlCommand : DbCommandBase, IComponent , IDbCommand , ICloneable , IDisposable The MySqlCommand class provides the following methods for executing commands against the MySQL database:
| Item | Description |
|---|---|
| ExecuteReader | Executes commands that return rows. |
| ExecutePageReader | Returns a specific subset of rows when paging through the results of a query. |
| ExecuteNonQuery | Executes SQL commands such as INSERT, DELETE, UPDATE. |
| ExecuteScalar | Retrieves a single value (for example, an aggregate value) from a database. |
If execution of the command results in a fatal MySqlException, the MySqlConnection may close. However, the user can reopen the connection and continue.
This class supports cross-form data binding with the InterForm Technology.
The following example uses the ExecuteReader method of MySqlCommand, along with MySqlDataReader and MySqlConnection, to select rows from a table.
[C#]
public void ReadMyData(string myConnString) |
[Visual Basic]
Public Sub ReadMyData(myConnString As String) |
MySqlCommand Members | Devart.Data.MySql Namespace | MySqlDataReader Class | MySqlConnection Class
© 2002 - 2008 Devart. All Rights Reserved.