Condividi tramite


SqlCeParameter.SqlDbType Property

Ottiene o imposta l'enumerazione SqlDbType del parametro.

Spazio dei nomi: System.Data.SqlServerCe
Assembly: System.Data.SqlServerCe (in system.data.sqlserverce.dll)

Sintassi

'Dichiarazione
<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)

Valore proprietà

Uno dei valori dell'enumerazione SqlDbType. Il valore predefinito è NVarChar.

Osservazioni

Le proprietà SqlDbType e DbType sono collegate. Di conseguenza, l'impostazione della proprietà DbType determina la modifica della proprietà SqlDbType in un'enumerazione SqlDbType di supporto.

Il provider .NET di SQL Server Compact 3.5 supporta i seguenti valori di SqlDbType:

  • 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

Per un elenco dei tipi di dati supportati, vedere la proprietà DbType appropriata.

Esempio

Nell'esempio riportato di seguito viene creato un oggetto SqlCeParameter e viene impostata la relativa proprietà SqlDbType.

Dim param As New SqlCeParameter()
param.SqlDbType = SqlDbType.NText
SqlCeParameter param = new SqlCeParameter();
param.SqlDbType = SqlDbType.NText;

Affidabilità

Tutti i membri statici pubblici (Shared in Microsoft Visual Basic) di questo tipo sono affidabili. Non è invece garantita l'affidabilità dei membri dell'istanza.

Piattaforme

Piattaforme di sviluppo

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
Informazioni sulla versione
.NET Framework e .NET Compact Framework
Supportato in 3.5
.NET Framework
Supportato in 3.0
.NET Compact Framework e .NET Framework
Supportato in 2.0

Vedere anche

Riferimento

SqlCeParameter Class
SqlCeParameter Members
System.Data.SqlServerCe Namespace