OleDbCommand Constructor (String^, OleDbConnection^, OleDbTransaction^)
Initializes a new instance of the OleDbCommand class with the text of the query, an OleDbConnection, and the Transaction.
Assembly: System.Data (in System.Data.dll)
public:
OleDbCommand(
String^ cmdText,
OleDbConnection^ connection,
OleDbTransaction^ transaction
)
Parameters
- cmdText
-
Type:
System::String^
The text of the query.
- connection
-
Type:
System.Data.OleDb::OleDbConnection^
An OleDbConnection that represents the connection to a data source.
- transaction
-
Type:
System.Data.OleDb::OleDbTransaction^
The transaction in which the OleDbCommand executes.
The following table shows initial property values for an instance of OleDbCommand.
Properties | Initial Value |
|---|---|
cmdText | |
30 | |
Text | |
A new OleDbConnection that is the value for the connection parameter. |
You can change the value for any of these parameters by setting the related property.
The following example creates an OleDbCommand and sets some of its properties.
Available since 1.1