OdbcCommand.Parameters Property
Gets the OdbcParameterCollection.
Namespace: System.Data.Odbc
Assembly: System.Data (in System.Data.dll)
Property Value
Type: System.Data.Odbc.OdbcParameterCollectionThe parameters of the SQL statement or stored procedure. The default is an empty collection.
When CommandType is set to Text, 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 in the command text.
Note |
|---|
If the parameters in the collection do not match the requirements of the query to be executed, an error may result. |
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note