SqlCommand Constructor (String^, SqlConnection^, SqlTransaction^)
Initializes a new instance of the SqlCommand class with the text of the query, a SqlConnection, and the SqlTransaction.
Assembly: System.Data (in System.Data.dll)
public:
SqlCommand(
String^ cmdText,
SqlConnection^ connection,
SqlTransaction^ transaction
)
Parameters
- cmdText
-
Type:
System::String^
The text of the query.
- connection
-
Type:
System.Data.SqlClient::SqlConnection^
A SqlConnection that represents the connection to an instance of SQL Server.
- transaction
-
Type:
System.Data.SqlClient::SqlTransaction^
The SqlTransaction in which the SqlCommand executes.
The following table shows initial property values for an instance of SqlCommand.
Properties | Initial value |
|---|---|
cmdText | |
30 | |
CommandType.Text | |
A new SqlConnection that is the value for the connection parameter. |
You can change the value for any of these parameters by setting the related property.
Available since 1.1