Partilhar via


Propriedade SqlDbType

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
    Get
    Set
'Uso
Dim instance As SqlCeParameter
Dim value As SqlDbType

value = instance.SqlDbType

instance.SqlDbType = value
[DbProviderSpecificTypePropertyAttribute(true)]
public SqlDbType SqlDbType { get; set; }
[DbProviderSpecificTypePropertyAttribute(true)]
public:
property SqlDbType SqlDbType {
    SqlDbType get ();
    void set (SqlDbType value);
}
[<DbProviderSpecificTypePropertyAttribute(true)>]
member SqlDbType : SqlDbType with get, set
function get SqlDbType () : SqlDbType
function set SqlDbType (value : SqlDbType)

Valor da propriedade

Tipo: System.Data. . :: . .SqlDbType
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.

Exemplos

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;

Consulte também

Referência

SqlCeParameter Classe

Membros SqlCeParameter

Namespace System.Data.SqlServerCe