OleDbParameterCollection 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
OleDbCommand 및 DataSet의 열에 대한 개별 매핑과 관련된 매개 변수 컬렉션을 나타냅니다.
public ref class OleDbParameterCollection sealed : System::Data::Common::DbParameterCollection
public ref class OleDbParameterCollection sealed : MarshalByRefObject, System::Collections::IList, System::Data::IDataParameterCollection
public sealed class OleDbParameterCollection : System.Data.Common.DbParameterCollection
[System.ComponentModel.ListBindable(false)]
public sealed class OleDbParameterCollection : MarshalByRefObject, System.Collections.IList, System.Data.IDataParameterCollection
[System.ComponentModel.ListBindable(false)]
public sealed class OleDbParameterCollection : System.Data.Common.DbParameterCollection
type OleDbParameterCollection = class
inherit DbParameterCollection
[<System.ComponentModel.ListBindable(false)>]
type OleDbParameterCollection = class
inherit MarshalByRefObject
interface IDataParameterCollection
interface IList
interface ICollection
interface IEnumerable
[<System.ComponentModel.ListBindable(false)>]
type OleDbParameterCollection = class
inherit DbParameterCollection
Public NotInheritable Class OleDbParameterCollection
Inherits DbParameterCollection
Public NotInheritable Class OleDbParameterCollection
Inherits MarshalByRefObject
Implements IDataParameterCollection, IList
- 상속
- 상속
- 특성
- 구현
예제
다음 예제에서는 내에서 컬렉션을 통해 OleDbParameterCollection 의 OleDbParameter 여러 인스턴스를 OleDbDataAdapter만듭니다. 이러한 매개 변수는 데이터 원본 내에서 데이터를 선택하고 에 데이터를 DataSet배치하는 데 사용됩니다. 이 예에서는 가정 하는 DataSet 및 OleDbDataAdapter 적절 한 스키마, 명령 및 연결을 사용 하 여 이미 생성 되어 합니다.
public DataSet GetDataSetFromAdapter(
DataSet dataSet, string connectionString, string queryString)
{
using (OleDbConnection connection =
new OleDbConnection(connectionString))
{
OleDbDataAdapter adapter =
new OleDbDataAdapter(queryString, connection);
// Set the parameters.
adapter.SelectCommand.Parameters.Add(
"@CategoryName", OleDbType.VarChar, 80).Value = "toasters";
adapter.SelectCommand.Parameters.Add(
"@SerialNum", OleDbType.Integer).Value = 239;
// Open the connection and fill the DataSet.
try
{
connection.Open();
adapter.Fill(dataSet);
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
// The connection is automatically closed when the
// code exits the using block.
}
return dataSet;
}
Public Function GetDataSetFromAdapter( _
ByVal dataSet As DataSet, ByVal connectionString As String, _
ByVal queryString As String) As DataSet
Using connection As New OleDbConnection(connectionString)
Dim adapter As New OleDbDataAdapter(queryString, connection)
' Set the parameters.
adapter.SelectCommand.Parameters.Add( _
"@CategoryName", OleDbType.VarChar, 80).Value = "toasters"
adapter.SelectCommand.Parameters.Add( _
"@SerialNum", OleDbType.Integer).Value = 239
' Open the connection and fill the DataSet.
Try
connection.Open()
adapter.Fill(dataSet)
Catch ex As Exception
Console.WriteLine(ex.Message)
End Try
' The connection is automatically closed when the
' code exits the Using block.
End Using
Return dataSet
End Function
설명
컬렉션의 매개 변수 수는 명령 텍스트 내의 매개 변수 자리 표시자 수와 같아야 합니다. 그렇지 않으면 .NET Framework Data Provider for OLE DB에서 오류가 발생할 수 있습니다.
속성
Count |
OleDbParameterCollection의 요소 수가 포함된 정수를 반환합니다. 읽기 전용입니다. |
IsFixedSize |
OleDbParameterCollection의 크기가 고정되어 있는지 여부를 나타내는 값을 가져옵니다. 읽기 전용입니다. |
IsReadOnly |
OleDbParameterCollection이 읽기 전용인지 여부를 나타내는 값을 가져옵니다. |
IsSynchronized |
OleDbParameterCollection이 동기화되었는지 여부를 나타내는 값을 가져옵니다. 읽기 전용입니다. |
Item[Int32] |
지정된 인덱스에 있는 OleDbParameter를 가져오거나 설정합니다. |
Item[String] |
지정된 이름을 가진 OleDbParameter를 가져오거나 설정합니다. |
SyncRoot |
OleDbParameterCollection에 대한 액세스를 동기화하는 데 사용할 수 있는 개체를 가져옵니다. 읽기 전용입니다. |
메서드
명시적 인터페이스 구현
IDataParameterCollection.Item[String] |
지정한 인덱스에 있는 매개 변수를 가져오거나 설정합니다. (다음에서 상속됨 DbParameterCollection) |
IList.Add(Object) |
이 멤버에 대한 설명은 Add(Object)를 참조하세요. (다음에서 상속됨 DbParameterCollection) |
IList.Contains(Object) |
이 멤버에 대한 설명은 Contains(Object)를 참조하세요. (다음에서 상속됨 DbParameterCollection) |
IList.IndexOf(Object) |
이 멤버에 대한 설명은 IndexOf(Object)를 참조하세요. (다음에서 상속됨 DbParameterCollection) |
IList.Insert(Int32, Object) |
이 멤버에 대한 설명은 Insert(Int32, Object)를 참조하세요. (다음에서 상속됨 DbParameterCollection) |
IList.Item[Int32] |
지정한 인덱스에 있는 요소를 가져오거나 설정합니다. (다음에서 상속됨 DbParameterCollection) |
IList.Remove(Object) |
이 멤버에 대한 설명은 Remove(Object)를 참조하세요. (다음에서 상속됨 DbParameterCollection) |
확장 메서드
Cast<TResult>(IEnumerable) |
IEnumerable의 요소를 지정된 형식으로 캐스팅합니다. |
OfType<TResult>(IEnumerable) |
지정된 형식에 따라 IEnumerable의 요소를 필터링합니다. |
AsParallel(IEnumerable) |
쿼리를 병렬화할 수 있도록 합니다. |
AsQueryable(IEnumerable) |
IEnumerable을 IQueryable로 변환합니다. |
적용 대상
추가 정보
.NET