SqlString 생성자

정의

SqlString 클래스의 새 인스턴스를 초기화합니다.

오버로드

SqlString(String)

지정된 문자열을 사용하여 SqlString 구조체의 새 인스턴스를 초기화합니다.

SqlString(String, Int32)

지정된 문자열과 로캘 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)

Source:
SQLString.cs
Source:
SQLString.cs
Source:
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)

Source:
SQLString.cs
Source:
SQLString.cs
Source:
SQLString.cs

지정된 문자열과 로캘 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

저장할 문자열입니다.

lcid
Int32

SqlString 구조체의 해당 지역 로캘과 언어를 지정합니다.

추가 정보

적용 대상

SqlString(Int32, SqlCompareOptions, Byte[])

Source:
SQLString.cs
Source:
SQLString.cs
Source:
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())

매개 변수

lcid
Int32

SqlString 구조체의 해당 지역 로캘과 언어를 지정합니다.

compareOptions
SqlCompareOptions

SqlString 구조체의 비교 옵션을 지정합니다.

data
Byte[]

저장할 데이터 배열입니다.

추가 정보

적용 대상

SqlString(String, Int32, SqlCompareOptions)

Source:
SQLString.cs
Source:
SQLString.cs
Source:
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

저장할 문자열입니다.

lcid
Int32

SqlString 구조체의 해당 지역 로캘과 언어를 지정합니다.

compareOptions
SqlCompareOptions

SqlString 구조체의 비교 옵션을 지정합니다.

추가 정보

적용 대상

SqlString(Int32, SqlCompareOptions, Byte[], Boolean)

Source:
SQLString.cs
Source:
SQLString.cs
Source:
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)

매개 변수

lcid
Int32

SqlString 구조체의 해당 지역 로캘과 언어를 지정합니다.

compareOptions
SqlCompareOptions

SqlString 구조체의 비교 옵션을 지정합니다.

data
Byte[]

저장할 데이터 배열입니다.

fUnicode
Boolean

유니코드로 인코딩되었으면 true입니다. 그렇지 않으면 false입니다.

추가 정보

적용 대상

SqlString(Int32, SqlCompareOptions, Byte[], Int32, Int32)

Source:
SQLString.cs
Source:
SQLString.cs
Source:
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)

매개 변수

lcid
Int32

SqlString 구조체의 해당 지역 로캘과 언어를 지정합니다.

compareOptions
SqlCompareOptions

SqlString 구조체의 비교 옵션을 지정합니다.

data
Byte[]

저장할 데이터 배열입니다.

index
Int32

배열 내의 시작 인덱스입니다.

count
Int32

인덱스에서 복사할 문자의 수입니다.

추가 정보

적용 대상

SqlString(Int32, SqlCompareOptions, Byte[], Int32, Int32, Boolean)

Source:
SQLString.cs
Source:
SQLString.cs
Source:
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)

매개 변수

lcid
Int32

SqlString 구조체의 해당 지역 로캘과 언어를 지정합니다.

compareOptions
SqlCompareOptions

SqlString 구조체의 비교 옵션을 지정합니다.

data
Byte[]

저장할 데이터 배열입니다.

index
Int32

배열 내의 시작 인덱스입니다.

count
Int32

인덱스에서 복사할 문자의 수입니다.

fUnicode
Boolean

유니코드로 인코딩되었으면 true입니다. 그렇지 않으면 false입니다.

추가 정보

적용 대상