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.

OleDbCommand Constructor (String^, OleDbConnection^)

 

Initializes a new instance of the OleDbCommand class with the text of the query and an OleDbConnection.

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

public:
OleDbCommand(
	String^ cmdText,
	OleDbConnection^ connection
)

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.

The following table shows initial property values for an instance of OleDbCommand.

Properties

Initial Value

CommandText

cmdText

CommandTimeout

30

CommandType

Text

Connection

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.

No code example is currently available or this language may not be supported.

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