Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

OdbcCommand Constructor (String^, OdbcConnection^, OdbcTransaction^)

 

Initializes a new instance of the OdbcCommand class with the text of the query, an OdbcConnection object, and the Transaction.

Namespace:   System.Data.Odbc
Assembly:  System.Data (in System.Data.dll)

public:
OdbcCommand(
	String^ cmdText,
	OdbcConnection^ connection,
	OdbcTransaction^ transaction
)

Parameters

cmdText
Type: System::String^

The text of the query.

connection
Type: System.Data.Odbc::OdbcConnection^

An OdbcConnection object that represents the connection to a data source.

transaction
Type: System.Data.Odbc::OdbcTransaction^

The transaction in which the OdbcCommand executes.

The following table shows initial property values for an instance of this implementation of the OdbcCommand.

Properties

Initial Value

CommandText

cmdText

CommandTimeout

30

CommandType

Text

Connection

A new OdbcConnection that is the value for the connection parameter.

You can change the value for any one of these parameters by setting the related property.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft