SqlCeParameter.Precision 屬性
取得或設定用來表示 Value 屬性的最大位數。
命名空間: System.Data.SqlServerCe
組件: System.Data.SqlServerCe (在 System.Data.SqlServerCe.dll 中)
語法
'宣告
Public Property Precision As Byte
Get
Set
'用途
Dim instance As SqlCeParameter
Dim value As Byte
value = instance.Precision
instance.Precision = value
public byte Precision { get; set; }
public:
property unsigned char Precision {
unsigned char get ();
void set (unsigned char value);
}
member Precision : byte with get, set
function get Precision () : byte
function set Precision (value : byte)
屬性值
型別:System.Byte
用來表示 Value 屬性的最大位數。預設值為 0。
備註
Precision 屬性只能用於十進位的數值輸入參數。
範例
下列範例會建立 SqlCeParameter,並設定 Precision 屬性。
Dim param As New SqlCeParameter("@Price", SqlDbType.Decimal)
param.Value = 3.1416
param.Precision = 8
param.Scale = 4
SqlCeParameter param = new SqlCeParameter("@Price", SqlDbType.Decimal);
param.Value = 3.1416;
param.Precision = 8;
param.Scale = 4;