SqlParameter.LocaleId 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定地區設定識別碼,其決定特定地區的慣例和語言。
public:
property int LocaleId { int get(); void set(int value); };
[System.ComponentModel.Browsable(false)]
public int LocaleId { get; set; }
public int LocaleId { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.LocaleId : int with get, set
member this.LocaleId : int with get, set
Public Property LocaleId As Integer
屬性值
與 參數相關聯的地區設定識別碼。
- 屬性
備註
地區設定會識別特定地理區域的慣例和語言。 用來將特定字串編碼的程式字碼頁 (字元集) 是根據該字串或產生該字串的環境所使用的地區設定。 此屬性會設定輸入參數 () 或取得輸出參數的 (,) 與伺服器交換資料時要附加至字串的地區設定。 這個屬性通常會與 屬性一 CompareInfo 起使用。
static void CreateSqlParameterLocaleId(){
SqlParameter parameter = new SqlParameter("pName", SqlDbType.VarChar);
parameter.LocaleId = 1033; // English - United States
}