asp.net.ph

SqlParameterCollection.Add Method ( String, SqlDbType )

System.Data.SqlClient Namespace   SqlParameterCollection Class


Adds an SqlParameter with the specified name and data type to the parameters collection.

[ VB ]
Overloads Public Function Add ( _
   ByVal parameterName As String, _
   ByVal oleDbType As SqlDbType _
) As SqlParameter

[ C# ]
public SqlParameter Add (
   string parameterName,
   SqlDbType oleDbType
);

[ C++ ]
public: SqlParameter* Add (
   String* parameterName,
   SqlDbType* oleDbType
);

[ JScript ]
public function Add (
   parameterName : String,
   oleDbType : SqlDbType
) : SqlParameter;

Parameters

parameterName
The name of the parameter.
oleDbType
One of the SqlDbType values.

Return Value

The newly created SqlParameter.

Example

The following example adds a new SqlParameter using this constructor.

public void CreateSqlParamColl ( SqlConnection myConn ) {
   SqlCommand myCmd = new SqlCommand (
      "SELECT * FROM Customers WHERE CustomerID = @CustomerID", myConn );
   SqlParameterCollection myParams = myCmd.Parameters;
   SqlParameter myParam = myParams.Add ( new SqlParameter (
      "@CustomerID", SqlDbType.VarChar ) );
}
  C# VB

See Also

SqlParameterCollection Members   SqlParameterCollection.Add Overload List   SqlDbType 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