SqlParameter.LocaleId 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定地區設定識別碼,其決定特定地區的慣例和語言。
public:
property int LocaleId { int get(); void set(int value); };
public int LocaleId { get; set; }
[System.ComponentModel.Browsable(false)]
public int LocaleId { get; set; }
member this.LocaleId : int with get, set
[<System.ComponentModel.Browsable(false)>]
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
}