SqlCeParameter.SqlDbType 속성
매개 변수의 SqlDbType을 가져오거나 설정합니다.
네임스페이스: System.Data.SqlServerCe
어셈블리: System.Data.SqlServerCe(System.Data.SqlServerCe.dll)
구문
‘선언
<DbProviderSpecificTypePropertyAttribute(True)> _
Public Property SqlDbType As SqlDbType
Get
Set
‘사용 방법
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)
속성 값
유형: System.Data.SqlDbType
SqlDbType 값 중 하나입니다. 기본값은 NVarChar입니다.
주의
SqlDbType과 DbType이 연결됩니다. 따라서 DbType을 설정하면 SqlDbType이 SqlDbType을 지원하는 것으로 변경됩니다.
SQL Server Compact .NET Provider는 다음과 같은 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
지원받는 데이터 형식의 목록을 보려면 해당 DbType 속성을 참조하십시오.
예
다음 예제에서는 SqlCeParameter를 만들고 SqlDbType 속성을 설정합니다.
Dim param As New SqlCeParameter()
param.SqlDbType = SqlDbType.NText
SqlCeParameter param = new SqlCeParameter();
param.SqlDbType = SqlDbType.NText;