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 集合建立的OleDbDataAdapter多個實例OleDbParameter。 這些參數可用來選取數據源中的數據,並將數據 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
備註
集合中的參數數目必須等於命令文字中的參數佔位元元數目,否則 OLE DB 的數據提供者 .NET Framework 可能會引發錯誤。
屬性
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。 |