OdbcCommand.Parameters Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the OdbcParameterCollection.
public:
property System::Data::Odbc::OdbcParameterCollection ^ Parameters { System::Data::Odbc::OdbcParameterCollection ^ get(); };
public System.Data.Odbc.OdbcParameterCollection Parameters { get; }
member this.Parameters : System.Data.Odbc.OdbcParameterCollection
Public ReadOnly Property Parameters As OdbcParameterCollection
Property Value
The parameters of the SQL statement or stored procedure. The default is an empty collection.
Remarks
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.