SqlCeParameter.SqlDbType Property
Obtém ou define o SqlDbType do parâmetro.
Namespace: System.Data.SqlServerCe
Assembly: System.Data.SqlServerCe (em system.data.sqlserverce.dll)
Sintaxe
'Declaração
<DbProviderSpecificTypePropertyAttribute(True)> _
Public Property SqlDbType As SqlDbType
[DbProviderSpecificTypePropertyAttribute(true)]
public SqlDbType SqlDbType { get; set; }
[DbProviderSpecificTypePropertyAttribute(true)]
public:
property SqlDbType SqlDbType {
SqlDbType get ();
void set (SqlDbType value);
}
/** @property */
public SqlDbType get_SqlDbType ()
/** @property */
public void set_SqlDbType (SqlDbType value)
public function get SqlDbType () : SqlDbType
public function set SqlDbType (value : SqlDbType)
Valor da propriedade
Um dos valores de SqlDbType. O padrão é NVarChar.
Comentários
SqlDbType e DbType estão vinculados. Assim, a configuração de DbType altera SqlDbType para um SqlDbType com suporte.
O Provedor de .NET do SQL Server Compact 3.5 dá suporte aos seguintes SqlDbTypes:
SqlDbType.TinyInt
SqlDbType.SmallInt
SqlDbType.Int
SqlDbType.BigInt
SqlDbType.Real
SqlDbType.Float
SqlDbType.Money
SqlDbType.Bit
SqlDbType.Binary
SqlDbType.VarBinary
SqlDbType.UniqueIdentifier
SqlDbType.Image
SqlDbType.NText
SqlDbType.NChar
SqlDbType.NVarChar
SqlDbType.Decimal
SqlDbType.DateTime
Para obter uma lista dos tipos de dados com suporte, consulte a propriedade DbType apropriada.
Exemplo
O exemplo a seguir cria um SqlCeParameter e define a propriedade SqlDbType.
Dim param As New SqlCeParameter()
param.SqlDbType = SqlDbType.NText
SqlCeParameter param = new SqlCeParameter();
param.SqlDbType = SqlDbType.NText;
Segurança de thread
Quaisquer membros estáticos públicos (compartilhados no Microsoft Visual Basic) desse tipo são thread safe. Não há garantia de que qualquer membro de instância seja thread safe.
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