SqlCeParameter Constructor (String, SqlDbType, Int32, ParameterDirection, Boolean, Byte, Byte, String, DataRowVersion, Object)
Inicializa uma nova instância da classe SqlCeParameter com o nome do parâmetro, o tipo e o comprimento dos dados, a direção do parâmetro e outras propriedades. O SQL Server Compact 3.5 dá suporte apenas a parâmetros de entrada.
Namespace: System.Data.SqlServerCe
Assembly: System.Data.SqlServerCe (em system.data.sqlserverce.dll)
Sintaxe
'Declaração
Public Sub New ( _
parameterName As String, _
dbType As SqlDbType, _
size As Integer, _
direction As ParameterDirection, _
isNullable As Boolean, _
precision As Byte, _
scale As Byte, _
sourceColumn As String, _
sourceVersion As DataRowVersion, _
value As Object _
)
public SqlCeParameter (
string parameterName,
SqlDbType dbType,
int size,
ParameterDirection direction,
bool isNullable,
byte precision,
byte scale,
string sourceColumn,
DataRowVersion sourceVersion,
Object value
)
public:
SqlCeParameter (
String^ parameterName,
SqlDbType dbType,
int size,
ParameterDirection direction,
bool isNullable,
unsigned char precision,
unsigned char scale,
String^ sourceColumn,
DataRowVersion sourceVersion,
Object^ value
)
public SqlCeParameter (
String parameterName,
SqlDbType dbType,
int size,
ParameterDirection direction,
boolean isNullable,
byte precision,
byte scale,
String sourceColumn,
DataRowVersion sourceVersion,
Object value
)
public function SqlCeParameter (
parameterName : String,
dbType : SqlDbType,
size : int,
direction : ParameterDirection,
isNullable : boolean,
precision : byte,
scale : byte,
sourceColumn : String,
sourceVersion : DataRowVersion,
value : Object
)
Parâmetros
- parameterName
O nome do parâmetro.
- dbType
Um dos valores de SqlDbType.
- size
O comprimento do parâmetro.
- direction
A ParameterDirection a ser usada.
- isNullable
true se o valor do campo puder ser nulo; caso contrário, false.
- precision
O número total de dígitos à esquerda e à direita da vírgula decimal para o qual Value é resolvido.
- scale
O número total de dígitos decimais para o qual Value é resolvido.
- sourceColumn
O nome da coluna de origem.
- sourceVersion
Um dos valores de DataRowVersion.
- value
Plataformas
Plataformas de desenvolvimento
Windows Vista, Windows Mobile 5.0, Windows XP Professional with Service Pack 2 (SP2), Windows Server 2003, Windows Mobile 2003 for Pocket PC, Windows CE 5.0
Informações de versão
.NET Framework e NET Compact Framework
Com suporte no 3.5
.NET Framework
Com suporte no 3.0
.NET Compact Framework e .Net Framework
Com suporte no 2.0
Consulte também
Referência
SqlCeParameter Class
SqlCeParameter Members
System.Data.SqlServerCe Namespace