asp.net.ph

IDataParameter Interface

System.Data Namespace


Represents a parameter to a Command object, and optionally, its mapping to DataSet columns; and is implemented by .NET data providers that access data sources.

IDataParameter Interface Members

Collapse   Properties

Visibility Name Value Type Accessibility
public DbType DbType [ Get , Set ]
public Direction ParameterDirection [ Get , Set ]
public IsNullable Boolean [ Get ]
public ParameterName String [ Get , Set ]
public SourceColumn String [ Get , Set ]
public SourceVersion DataRowVersion [ Get , Set ]
public Value Object [ Get , Set ]

Classes that Implement IDataParameter


Class Description
OleDbParameter Represents a parameter to an OleDbCommand and optionally, its mapping to a DataSet column.
SqlParameter Represents a parameter to an SqlCommand, and optionally, its mapping to DataSet columns. This class cannot be inherited.

Remarks

The IDataParameter interface allows an inheriting class to implement a Parameter class, which represents a parameter to a Command object. For more information about Parameter classes, see Using Stored Procedures with a Command. For more information about implementing .NET data providers, see Implementing a .NET Data Provider.

An application does not create an instance of the IDataParameter interface directly, but initializes an instance of a class that inherits IDataParameter.

Classes that inherit IDataParameter must implement the inherited members, and typically define additional members to add provider-specific functionality. For example, the IDataParameter interface defines the DbType property. In turn, the OleDbParameter class inherits this property, and also defines the OleDbType property.

Notes to Implementers: To promote consistency among .NET data providers, name the inheriting class in the form Prv Parameter where Prv is the uniform prefix given to all classes in a specific .NET data provider namespace. For example, Sql is the prefix of the SqlCommand class in the System.Data.SqlClient namespace.

When you inherit from the IDataParameter interface, you should implement the following constructors:


Item Description
PrvParameter ( ) Initializes a new instance of the Parameter class.
PrvParameter ( string name, PrvDbType dataType ) Initializes a new instance of the Parameter class with the parameter name and data type.
PrvParameter ( string name, object value ) Initializes a new instance of the Parameter class with the parameter name and a Parameter object.
PrvParameter ( string name, PrvDbType dataType, int size ) Initializes a new instance of the Parameter class with the parameter name, data type, and width.
PrvParameter ( string name, PrvDbType dataType, int size, string srcColumn ) Initializes a new instance of the DbParameter class with the parameter name, data type, width, and source column name.
PrvParameter ( string parameterName, PrvDbType dbType, int size, ParameterDirection direction, Boolean isNullable, Byte precision, Byte scale, string srcColumn, DataRowVersion srcVersion, object value ) Initializes a new instance of the OleDbParameter class with the parameter name, data type, width, source column name, parameter direction, numeric precision, and other properties.

Example

The following example initializes multiple instances of the derived class, SqlParameter, through the SqlParameterCollection within the SqlDataAdapter. These parameters are used to select data from the data source and place the data in the DataSet. This example assumes that a DataSet and an SqlDataAdapter have already been created with the appropriate schema, commands, and connection.

void AddSqlParameters ( ) {

   // ... create myDataSet and myDataAdapter ...
   myDataAdapter.SelectCommand.Parameters.Add
      ( "@CategoryName", SqlDbType.VarChar, 80 ).Value = "toasters";
   myDataAdapter.SelectCommand.Parameters.Add
      ( "@SerialNum", SqlDbType.Int ).Value = 239;
   myDataAdapter.Fill ( myDataSet );
}
  C# VB

Skip Navigation Links



Home
Suggested Reading


Previous page Back to top Next page

© 2000-2010 Rey Nuñez All rights reserved.

If you have any question, comment or suggestion
about this site, please send us a note

You can help support asp.net.ph