Initializes a new instance of the SqlParameter class that uses the parameter name, the type of the parameter, the length of the parameter the direction, the precision, the scale, the name of the source column, one of the DataRowVersion values, a Boolean for source column mapping, the value of the SqlParameter, the name of the database where the schema collection for this XML instance is located, the owning relational schema where the schema collection for this XML instance is located, and the name of the schema collection for this parameter.
Assembly: System.Data (in System.Data.dll)
Public Sub New ( _ parameterName As String, _ dbType As SqlDbType, _ size As Integer, _ direction As ParameterDirection, _ precision As Byte, _ scale As Byte, _ sourceColumn As String, _ sourceVersion As DataRowVersion, _ sourceColumnNullMapping As Boolean, _ value As Object, _ xmlSchemaCollectionDatabase As String, _ xmlSchemaCollectionOwningSchema As String, _ xmlSchemaCollectionName As String _ )
public SqlParameter( string parameterName, SqlDbType dbType, int size, ParameterDirection direction, byte precision, byte scale, string sourceColumn, DataRowVersion sourceVersion, bool sourceColumnNullMapping, Object value, string xmlSchemaCollectionDatabase, string xmlSchemaCollectionOwningSchema, string xmlSchemaCollectionName )
public: SqlParameter( String^ parameterName, SqlDbType dbType, int size, ParameterDirection direction, unsigned char precision, unsigned char scale, String^ sourceColumn, DataRowVersion sourceVersion, bool sourceColumnNullMapping, Object^ value, String^ xmlSchemaCollectionDatabase, String^ xmlSchemaCollectionOwningSchema, String^ xmlSchemaCollectionName )
new : parameterName:string * dbType:SqlDbType * size:int * direction:ParameterDirection * precision:byte * scale:byte * sourceColumn:string * sourceVersion:DataRowVersion * sourceColumnNullMapping:bool * value:Object * xmlSchemaCollectionDatabase:string * xmlSchemaCollectionOwningSchema:string * xmlSchemaCollectionName:string -> SqlParameter
Parameters
- parameterName
- Type: System.String
The name of the parameter to map.
- dbType
- Type: System.Data.SqlDbType
One of the SqlDbType values.
- size
- Type: System.Int32
The length of the parameter.
- direction
- Type: System.Data.ParameterDirection
One of the ParameterDirection values.
- precision
- Type: System.Byte
The total number of digits to the left and right of the decimal point to which Value is resolved.
- scale
- Type: System.Byte
The total number of decimal places to which Value is resolved.
- sourceColumn
- Type: System.String
The name of the source column.
- sourceVersion
- Type: System.Data.DataRowVersion
One of the DataRowVersion values.
- sourceColumnNullMapping
- Type: System.Boolean
true if the source column is nullable; false if it is not.
- value
- Type: System.Object
An Object that is the value of the SqlParameter.
- xmlSchemaCollectionDatabase
- Type: System.String
The name of the database where the schema collection for this XML instance is located.
- xmlSchemaCollectionOwningSchema
- Type: System.String
The owning relational schema where the schema collection for this XML instance is located.
- xmlSchemaCollectionName
- Type: System.String
The name of the schema collection for this parameter.
The Size and Precision are inferred from the value of the dbType parameter if they are not explicitly set in the size and precision parameters.
.NET Framework
Supported in: 4, 3.5, 3.0, 2.0.NET Framework Client Profile
Supported in: 4, 3.5 SP1Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.