Прочетете на английски Редактиране

Споделяне чрез


OdbcCommand.CommandType Property

Definition

Gets or sets a value that indicates how the CommandText property is interpreted.

C#
public override System.Data.CommandType CommandType { get; set; }
C#
public System.Data.CommandType CommandType { get; set; }

Property Value

One of the CommandType values. The default is Text.

Implements

Exceptions

The value was not a valid CommandType.

Remarks

When the CommandType property is set to StoredProcedure, you should set the CommandText property to the full ODBC call syntax. The command then executes this stored procedure when you call one of the Execute methods (for example, ExecuteReader or ExecuteNonQuery).

The Connection, CommandType and CommandText properties cannot be set if the current connection is performing an execute or fetch operation.

The .NET Framework Data Provider for ODBC does not support passing named parameters to an SQL statement or to a stored procedure called by an OdbcCommand. In either of these cases, use the question mark (?) placeholder. For example:

SELECT * FROM Customers WHERE CustomerID = ?  

The order in which OdbcParameter objects are added to the OdbcParameterCollection must directly correspond to the position of the question mark placeholder for the parameter.

Бележка

The .NET Framework Data Provider for ODBC does not support the CommandType setting of TableDirect.

Applies to

Продукт Версии
.NET 8 (package-provided), 9 (package-provided), 10 (package-provided)
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided)

See also