SqlString 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 SqlString 類別的新執行個體。
多載
SqlString(String) |
使用指定的字串,初始化 SqlString 結構的新執行個體。 |
SqlString(String, Int32) |
使用指定的字串與地區設定 ID (Locale ID) 值,初始化 SqlString 結構的新執行個體。 |
SqlString(Int32, SqlCompareOptions, Byte[]) |
使用指定的地區設定 ID、比較選項和資料,初始化 SqlString 結構的新執行個體。 |
SqlString(String, Int32, SqlCompareOptions) |
用指定的字串、地區設定 ID 和比較選項值,初始化 SqlString 結構的新執行個體。 |
SqlString(Int32, SqlCompareOptions, Byte[], Boolean) |
初始化 SqlString 類別的新執行個體。 |
SqlString(Int32, SqlCompareOptions, Byte[], Int32, Int32) |
初始化 SqlString 類別的新執行個體。 |
SqlString(Int32, SqlCompareOptions, Byte[], Int32, Int32, Boolean) |
初始化 SqlString 類別的新執行個體。 |
SqlString(String)
- 來源:
- SQLString.cs
- 來源:
- SQLString.cs
- 來源:
- SQLString.cs
使用指定的字串,初始化 SqlString 結構的新執行個體。
public:
SqlString(System::String ^ data);
public SqlString (string data);
public SqlString (string? data);
new System.Data.SqlTypes.SqlString : string -> System.Data.SqlTypes.SqlString
Public Sub New (data As String)
參數
- data
- String
要儲存的字串。
另請參閱
適用於
SqlString(String, Int32)
- 來源:
- SQLString.cs
- 來源:
- SQLString.cs
- 來源:
- SQLString.cs
使用指定的字串與地區設定 ID (Locale ID) 值,初始化 SqlString 結構的新執行個體。
public:
SqlString(System::String ^ data, int lcid);
public SqlString (string data, int lcid);
public SqlString (string? data, int lcid);
new System.Data.SqlTypes.SqlString : string * int -> System.Data.SqlTypes.SqlString
Public Sub New (data As String, lcid As Integer)
參數
- data
- String
要儲存的字串。
另請參閱
適用於
SqlString(Int32, SqlCompareOptions, Byte[])
- 來源:
- SQLString.cs
- 來源:
- SQLString.cs
- 來源:
- SQLString.cs
使用指定的地區設定 ID、比較選項和資料,初始化 SqlString 結構的新執行個體。
public:
SqlString(int lcid, System::Data::SqlTypes::SqlCompareOptions compareOptions, cli::array <System::Byte> ^ data);
public SqlString (int lcid, System.Data.SqlTypes.SqlCompareOptions compareOptions, byte[] data);
new System.Data.SqlTypes.SqlString : int * System.Data.SqlTypes.SqlCompareOptions * byte[] -> System.Data.SqlTypes.SqlString
Public Sub New (lcid As Integer, compareOptions As SqlCompareOptions, data As Byte())
參數
- compareOptions
- SqlCompareOptions
指定新 SqlString 結構的比較選項。
- data
- Byte[]
要儲存的資料陣列。
另請參閱
適用於
SqlString(String, Int32, SqlCompareOptions)
- 來源:
- SQLString.cs
- 來源:
- SQLString.cs
- 來源:
- SQLString.cs
用指定的字串、地區設定 ID 和比較選項值,初始化 SqlString 結構的新執行個體。
public:
SqlString(System::String ^ data, int lcid, System::Data::SqlTypes::SqlCompareOptions compareOptions);
public SqlString (string data, int lcid, System.Data.SqlTypes.SqlCompareOptions compareOptions);
public SqlString (string? data, int lcid, System.Data.SqlTypes.SqlCompareOptions compareOptions);
new System.Data.SqlTypes.SqlString : string * int * System.Data.SqlTypes.SqlCompareOptions -> System.Data.SqlTypes.SqlString
Public Sub New (data As String, lcid As Integer, compareOptions As SqlCompareOptions)
參數
- data
- String
要儲存的字串。
- compareOptions
- SqlCompareOptions
指定新 SqlString 結構的比較選項。
另請參閱
適用於
SqlString(Int32, SqlCompareOptions, Byte[], Boolean)
- 來源:
- SQLString.cs
- 來源:
- SQLString.cs
- 來源:
- SQLString.cs
初始化 SqlString 類別的新執行個體。
public:
SqlString(int lcid, System::Data::SqlTypes::SqlCompareOptions compareOptions, cli::array <System::Byte> ^ data, bool fUnicode);
public SqlString (int lcid, System.Data.SqlTypes.SqlCompareOptions compareOptions, byte[] data, bool fUnicode);
new System.Data.SqlTypes.SqlString : int * System.Data.SqlTypes.SqlCompareOptions * byte[] * bool -> System.Data.SqlTypes.SqlString
Public Sub New (lcid As Integer, compareOptions As SqlCompareOptions, data As Byte(), fUnicode As Boolean)
參數
- compareOptions
- SqlCompareOptions
指定新 SqlString 結構的比較選項。
- data
- Byte[]
要儲存的資料陣列。
- fUnicode
- Boolean
如果編碼為 Unicode,則為 true
, 否則為 false
。
另請參閱
適用於
SqlString(Int32, SqlCompareOptions, Byte[], Int32, Int32)
- 來源:
- SQLString.cs
- 來源:
- SQLString.cs
- 來源:
- SQLString.cs
初始化 SqlString 類別的新執行個體。
public:
SqlString(int lcid, System::Data::SqlTypes::SqlCompareOptions compareOptions, cli::array <System::Byte> ^ data, int index, int count);
public SqlString (int lcid, System.Data.SqlTypes.SqlCompareOptions compareOptions, byte[] data, int index, int count);
public SqlString (int lcid, System.Data.SqlTypes.SqlCompareOptions compareOptions, byte[]? data, int index, int count);
new System.Data.SqlTypes.SqlString : int * System.Data.SqlTypes.SqlCompareOptions * byte[] * int * int -> System.Data.SqlTypes.SqlString
Public Sub New (lcid As Integer, compareOptions As SqlCompareOptions, data As Byte(), index As Integer, count As Integer)
參數
- compareOptions
- SqlCompareOptions
指定新 SqlString 結構的比較選項。
- data
- Byte[]
要儲存的資料陣列。
- index
- Int32
陣列中的開始索引。
- count
- Int32
從索引中要複製的字元數。
另請參閱
適用於
SqlString(Int32, SqlCompareOptions, Byte[], Int32, Int32, Boolean)
- 來源:
- SQLString.cs
- 來源:
- SQLString.cs
- 來源:
- SQLString.cs
初始化 SqlString 類別的新執行個體。
public:
SqlString(int lcid, System::Data::SqlTypes::SqlCompareOptions compareOptions, cli::array <System::Byte> ^ data, int index, int count, bool fUnicode);
public SqlString (int lcid, System.Data.SqlTypes.SqlCompareOptions compareOptions, byte[] data, int index, int count, bool fUnicode);
public SqlString (int lcid, System.Data.SqlTypes.SqlCompareOptions compareOptions, byte[]? data, int index, int count, bool fUnicode);
new System.Data.SqlTypes.SqlString : int * System.Data.SqlTypes.SqlCompareOptions * byte[] * int * int * bool -> System.Data.SqlTypes.SqlString
Public Sub New (lcid As Integer, compareOptions As SqlCompareOptions, data As Byte(), index As Integer, count As Integer, fUnicode As Boolean)
參數
- compareOptions
- SqlCompareOptions
指定新 SqlString 結構的比較選項。
- data
- Byte[]
要儲存的資料陣列。
- index
- Int32
陣列中的開始索引。
- count
- Int32
從索引中要複製的字元數。
- fUnicode
- Boolean
如果編碼為 Unicode,則為 true
, 否則為 false
。