|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// ------------------------------------------------------------------------------
// Changes to this file must follow the https://aka.ms/api-review process.
// ------------------------------------------------------------------------------
namespace System.Data.OleDb
{
[System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.Data.VS.OleDbCommandDesigner, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
[System.ComponentModel.ToolboxItemAttribute(true)]
public sealed partial class OleDbCommand : System.Data.Common.DbCommand, System.Data.IDbCommand, System.ICloneable, System.IDisposable
{
public OleDbCommand() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public OleDbCommand(string? cmdText) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public OleDbCommand(string? cmdText, System.Data.OleDb.OleDbConnection? connection) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public OleDbCommand(string? cmdText, System.Data.OleDb.OleDbConnection? connection, System.Data.OleDb.OleDbTransaction? transaction) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
[System.ComponentModel.DefaultValueAttribute("")]
[System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.ADO.Design.OleDbCommandTextEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
[System.ComponentModel.RefreshPropertiesAttribute(System.ComponentModel.RefreshProperties.All)]
[System.Diagnostics.CodeAnalysis.AllowNullAttribute]
public override string CommandText { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
public override int CommandTimeout { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
[System.ComponentModel.DefaultValueAttribute(System.Data.CommandType.Text)]
[System.ComponentModel.RefreshPropertiesAttribute(System.ComponentModel.RefreshProperties.All)]
public override System.Data.CommandType CommandType { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
[System.ComponentModel.DefaultValueAttribute(null)]
[System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DbConnectionEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
public new System.Data.OleDb.OleDbConnection? Connection { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
protected override System.Data.Common.DbConnection? DbConnection { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
protected override System.Data.Common.DbParameterCollection DbParameterCollection { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
protected override System.Data.Common.DbTransaction? DbTransaction { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
[System.ComponentModel.BrowsableAttribute(false)]
[System.ComponentModel.DefaultValueAttribute(true)]
[System.ComponentModel.DesignOnlyAttribute(true)]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
public override bool DesignTimeVisible { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
[System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)]
public new System.Data.OleDb.OleDbParameterCollection Parameters { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
[System.ComponentModel.BrowsableAttribute(false)]
[System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
public new System.Data.OleDb.OleDbTransaction? Transaction { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
[System.ComponentModel.DefaultValueAttribute(System.Data.UpdateRowSource.Both)]
public override System.Data.UpdateRowSource UpdatedRowSource { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
public override void Cancel() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public System.Data.OleDb.OleDbCommand Clone() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
protected override System.Data.Common.DbParameter CreateDbParameter() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public new System.Data.OleDb.OleDbParameter CreateParameter() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
protected override void Dispose(bool disposing) { }
protected override System.Data.Common.DbDataReader ExecuteDbDataReader(System.Data.CommandBehavior behavior) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override int ExecuteNonQuery() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public new System.Data.OleDb.OleDbDataReader ExecuteReader() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public new System.Data.OleDb.OleDbDataReader ExecuteReader(System.Data.CommandBehavior behavior) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override object? ExecuteScalar() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override void Prepare() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public void ResetCommandTimeout() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
System.Data.IDataReader System.Data.IDbCommand.ExecuteReader() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
System.Data.IDataReader System.Data.IDbCommand.ExecuteReader(System.Data.CommandBehavior behavior) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
object System.ICloneable.Clone() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
}
public sealed partial class OleDbCommandBuilder : System.Data.Common.DbCommandBuilder
{
public OleDbCommandBuilder() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public OleDbCommandBuilder(System.Data.OleDb.OleDbDataAdapter? adapter) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
[System.ComponentModel.DefaultValueAttribute(null)]
public new System.Data.OleDb.OleDbDataAdapter? DataAdapter { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
protected override void ApplyParameterInfo(System.Data.Common.DbParameter parameter, System.Data.DataRow datarow, System.Data.StatementType statementType, bool whereClause) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public static void DeriveParameters(System.Data.OleDb.OleDbCommand command) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public new System.Data.OleDb.OleDbCommand GetDeleteCommand() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public new System.Data.OleDb.OleDbCommand GetDeleteCommand(bool useColumnsForParameterNames) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public new System.Data.OleDb.OleDbCommand GetInsertCommand() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public new System.Data.OleDb.OleDbCommand GetInsertCommand(bool useColumnsForParameterNames) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
protected override string GetParameterName(int parameterOrdinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
protected override string GetParameterName(string parameterName) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
protected override string GetParameterPlaceholder(int parameterOrdinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public new System.Data.OleDb.OleDbCommand GetUpdateCommand() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public new System.Data.OleDb.OleDbCommand GetUpdateCommand(bool useColumnsForParameterNames) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override string QuoteIdentifier(string unquotedIdentifier) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public string QuoteIdentifier(string unquotedIdentifier, System.Data.OleDb.OleDbConnection? connection) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
protected override void SetRowUpdatingHandler(System.Data.Common.DbDataAdapter adapter) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override string UnquoteIdentifier(string quotedIdentifier) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public string UnquoteIdentifier(string quotedIdentifier, System.Data.OleDb.OleDbConnection? connection) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
}
[System.ComponentModel.DefaultEventAttribute("InfoMessage")]
public sealed partial class OleDbConnection : System.Data.Common.DbConnection, System.Data.IDbConnection, System.ICloneable, System.IDisposable
{
public OleDbConnection() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public OleDbConnection(string? connectionString) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
[System.ComponentModel.DefaultValueAttribute("")]
[System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.ADO.Design.OleDbConnectionStringEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
[System.ComponentModel.RecommendedAsConfigurableAttribute(true)]
[System.ComponentModel.RefreshPropertiesAttribute(System.ComponentModel.RefreshProperties.All)]
[System.ComponentModel.SettingsBindableAttribute(true)]
[System.Diagnostics.CodeAnalysis.AllowNullAttribute]
public override string ConnectionString { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
[System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
public override int ConnectionTimeout { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
[System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
public override string Database { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
[System.ComponentModel.BrowsableAttribute(true)]
public override string DataSource { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
[System.ComponentModel.BrowsableAttribute(true)]
[System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
public string Provider { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
public override string ServerVersion { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
[System.ComponentModel.BrowsableAttribute(false)]
[System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
public override System.Data.ConnectionState State { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
public event System.Data.OleDb.OleDbInfoMessageEventHandler? InfoMessage { add { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } remove { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
protected override System.Data.Common.DbTransaction BeginDbTransaction(System.Data.IsolationLevel isolationLevel) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public new System.Data.OleDb.OleDbTransaction BeginTransaction() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public new System.Data.OleDb.OleDbTransaction BeginTransaction(System.Data.IsolationLevel isolationLevel) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override void ChangeDatabase(string value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override void Close() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public new System.Data.OleDb.OleDbCommand CreateCommand() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
protected override System.Data.Common.DbCommand CreateDbCommand() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
protected override void Dispose(bool disposing) { }
public override void EnlistTransaction(System.Transactions.Transaction? transaction) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public System.Data.DataTable? GetOleDbSchemaTable(System.Guid schema, object?[]? restrictions) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override System.Data.DataTable GetSchema() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override System.Data.DataTable GetSchema(string collectionName) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override System.Data.DataTable GetSchema(string collectionName, string?[]? restrictionValues) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override void Open() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public static void ReleaseObjectPool() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
public void ResetState() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
object System.ICloneable.Clone() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
}
[System.ComponentModel.DefaultPropertyAttribute("Provider")]
[System.ComponentModel.RefreshPropertiesAttribute(System.ComponentModel.RefreshProperties.All)]
public sealed partial class OleDbConnectionStringBuilder : System.Data.Common.DbConnectionStringBuilder
{
public OleDbConnectionStringBuilder() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public OleDbConnectionStringBuilder(string? connectionString) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
[System.ComponentModel.DisplayNameAttribute("Data Source")]
[System.ComponentModel.RefreshPropertiesAttribute(System.ComponentModel.RefreshProperties.All)]
public string DataSource { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
[System.ComponentModel.DisplayNameAttribute("File Name")]
[System.ComponentModel.EditorAttribute("System.Windows.Forms.Design.FileNameEditor, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
[System.ComponentModel.RefreshPropertiesAttribute(System.ComponentModel.RefreshProperties.All)]
public string FileName { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
[System.Diagnostics.CodeAnalysis.AllowNullAttribute]
public override object this[string keyword] { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
public override System.Collections.ICollection Keys { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
[System.ComponentModel.DisplayNameAttribute("Persist Security Info")]
[System.ComponentModel.RefreshPropertiesAttribute(System.ComponentModel.RefreshProperties.All)]
public bool PersistSecurityInfo { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
public override void Clear() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override bool ContainsKey(string keyword) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override bool Remove(string keyword) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override bool TryGetValue(string keyword, [System.Diagnostics.CodeAnalysis.NotNullWhen(true)] out object? value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
}
[System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.Data.VS.OleDbDataAdapterDesigner, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
[System.ComponentModel.ToolboxItemAttribute("Microsoft.VSDesigner.Data.VS.OleDbDataAdapterToolboxItem, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
public sealed partial class OleDbDataAdapter : System.Data.Common.DbDataAdapter, System.Data.IDataAdapter, System.Data.IDbDataAdapter, System.ICloneable
{
public OleDbDataAdapter() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public OleDbDataAdapter(System.Data.OleDb.OleDbCommand? selectCommand) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public OleDbDataAdapter(string? selectCommandText, System.Data.OleDb.OleDbConnection? selectConnection) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public OleDbDataAdapter(string? selectCommandText, string? selectConnectionString) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
[System.ComponentModel.DefaultValueAttribute(null)]
[System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DBCommandEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
public new System.Data.OleDb.OleDbCommand? DeleteCommand { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
[System.ComponentModel.DefaultValueAttribute(null)]
[System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DBCommandEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
public new System.Data.OleDb.OleDbCommand? InsertCommand { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
[System.ComponentModel.DefaultValueAttribute(null)]
[System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DBCommandEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
public new System.Data.OleDb.OleDbCommand? SelectCommand { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
System.Data.IDbCommand? System.Data.IDbDataAdapter.DeleteCommand { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
System.Data.IDbCommand? System.Data.IDbDataAdapter.InsertCommand { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
System.Data.IDbCommand? System.Data.IDbDataAdapter.SelectCommand { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
System.Data.IDbCommand? System.Data.IDbDataAdapter.UpdateCommand { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
[System.ComponentModel.DefaultValueAttribute(null)]
[System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DBCommandEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
public new System.Data.OleDb.OleDbCommand? UpdateCommand { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
public event System.Data.OleDb.OleDbRowUpdatedEventHandler? RowUpdated { add { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } remove { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
public event System.Data.OleDb.OleDbRowUpdatingEventHandler? RowUpdating { add { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } remove { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
protected override System.Data.Common.RowUpdatedEventArgs CreateRowUpdatedEvent(System.Data.DataRow dataRow, System.Data.IDbCommand? command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
protected override System.Data.Common.RowUpdatingEventArgs CreateRowUpdatingEvent(System.Data.DataRow dataRow, System.Data.IDbCommand? command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public int Fill(System.Data.DataSet dataSet, object ADODBRecordSet, string srcTable) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public int Fill(System.Data.DataTable dataTable, object ADODBRecordSet) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
protected override void OnRowUpdated(System.Data.Common.RowUpdatedEventArgs value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
protected override void OnRowUpdating(System.Data.Common.RowUpdatingEventArgs value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
object System.ICloneable.Clone() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
}
public sealed partial class OleDbDataReader : System.Data.Common.DbDataReader
{
internal OleDbDataReader() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override int Depth { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
public override int FieldCount { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
public override bool HasRows { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
public override bool IsClosed { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
public override object this[int index] { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
public override object this[string name] { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
public override int RecordsAffected { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
public override int VisibleFieldCount { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
public override void Close() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override bool GetBoolean(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override byte GetByte(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override long GetBytes(int ordinal, long dataIndex, byte[]? buffer, int bufferIndex, int length) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
public override char GetChar(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override long GetChars(int ordinal, long dataIndex, char[]? buffer, int bufferIndex, int length) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
public new System.Data.OleDb.OleDbDataReader GetData(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override string GetDataTypeName(int index) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override System.DateTime GetDateTime(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
protected override System.Data.Common.DbDataReader GetDbDataReader(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override decimal GetDecimal(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override double GetDouble(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override System.Collections.IEnumerator GetEnumerator() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override System.Type GetFieldType(int index) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override float GetFloat(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override System.Guid GetGuid(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override short GetInt16(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override int GetInt32(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override long GetInt64(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override string GetName(int index) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override int GetOrdinal(string name) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override System.Data.DataTable? GetSchemaTable() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override string GetString(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public System.TimeSpan GetTimeSpan(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override object GetValue(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override int GetValues(object[] values) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override bool IsDBNull(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override bool NextResult() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override bool Read() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
}
public sealed partial class OleDbEnumerator
{
public OleDbEnumerator() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public System.Data.DataTable GetElements() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public static System.Data.OleDb.OleDbDataReader GetEnumerator(System.Type type) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public static System.Data.OleDb.OleDbDataReader GetRootEnumerator() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
}
public sealed partial class OleDbError
{
internal OleDbError() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public string Message { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
public int NativeError { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
public string Source { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
public string SQLState { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
public override string ToString() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
}
[System.ComponentModel.ListBindableAttribute(false)]
public sealed partial class OleDbErrorCollection : System.Collections.ICollection, System.Collections.IEnumerable
{
internal OleDbErrorCollection() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public int Count { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
public System.Data.OleDb.OleDbError this[int index] { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
bool System.Collections.ICollection.IsSynchronized { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
object System.Collections.ICollection.SyncRoot { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
public void CopyTo(System.Array array, int index) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public void CopyTo(System.Data.OleDb.OleDbError[] array, int index) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public System.Collections.IEnumerator GetEnumerator() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
}
public sealed partial class OleDbException : System.Data.Common.DbException
{
internal OleDbException() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
[System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)]
public System.Data.OleDb.OleDbErrorCollection Errors { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
#if NET8_0_OR_GREATER
[System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId = "SYSLIB0051", UrlFormat = "https://aka.ms/dotnet-warnings/{0}")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
#endif
public override void GetObjectData(System.Runtime.Serialization.SerializationInfo si, System.Runtime.Serialization.StreamingContext context) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
}
public sealed partial class OleDbFactory : System.Data.Common.DbProviderFactory
{
internal OleDbFactory() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public static readonly System.Data.OleDb.OleDbFactory Instance;
public override System.Data.Common.DbCommand CreateCommand() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override System.Data.Common.DbCommandBuilder CreateCommandBuilder() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override System.Data.Common.DbConnection CreateConnection() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override System.Data.Common.DbConnectionStringBuilder CreateConnectionStringBuilder() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override System.Data.Common.DbDataAdapter CreateDataAdapter() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override System.Data.Common.DbParameter CreateParameter() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
}
public sealed partial class OleDbInfoMessageEventArgs : System.EventArgs
{
internal OleDbInfoMessageEventArgs() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public int ErrorCode { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
public System.Data.OleDb.OleDbErrorCollection Errors { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
public string Message { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
public string? Source { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
public override string ToString() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
}
public delegate void OleDbInfoMessageEventHandler(object sender, System.Data.OleDb.OleDbInfoMessageEventArgs e);
public enum OleDbLiteral
{
Invalid = 0,
Binary_Literal = 1,
Catalog_Name = 2,
Catalog_Separator = 3,
Char_Literal = 4,
Column_Alias = 5,
Column_Name = 6,
Correlation_Name = 7,
Cursor_Name = 8,
Escape_Percent_Prefix = 9,
Escape_Underscore_Prefix = 10,
Index_Name = 11,
Like_Percent = 12,
Like_Underscore = 13,
Procedure_Name = 14,
Quote_Prefix = 15,
Schema_Name = 16,
Table_Name = 17,
Text_Command = 18,
User_Name = 19,
View_Name = 20,
Cube_Name = 21,
Dimension_Name = 22,
Hierarchy_Name = 23,
Level_Name = 24,
Member_Name = 25,
Property_Name = 26,
Schema_Separator = 27,
Quote_Suffix = 28,
Escape_Percent_Suffix = 29,
Escape_Underscore_Suffix = 30,
}
public static partial class OleDbMetaDataCollectionNames
{
public static readonly string Catalogs;
public static readonly string Collations;
public static readonly string Columns;
public static readonly string Indexes;
public static readonly string ProcedureColumns;
public static readonly string ProcedureParameters;
public static readonly string Procedures;
public static readonly string Tables;
public static readonly string Views;
}
public static partial class OleDbMetaDataColumnNames
{
public static readonly string BooleanFalseLiteral;
public static readonly string BooleanTrueLiteral;
public static readonly string DateTimeDigits;
public static readonly string NativeDataType;
}
public sealed partial class OleDbParameter : System.Data.Common.DbParameter, System.Data.IDataParameter, System.Data.IDbDataParameter, System.ICloneable
{
public OleDbParameter() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public OleDbParameter(string? name, System.Data.OleDb.OleDbType dataType) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public OleDbParameter(string? name, System.Data.OleDb.OleDbType dataType, int size) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
public OleDbParameter(string? parameterName, System.Data.OleDb.OleDbType dbType, int size, System.Data.ParameterDirection direction, bool isNullable, byte precision, byte scale, string? srcColumn, System.Data.DataRowVersion srcVersion, object? value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
public OleDbParameter(string? parameterName, System.Data.OleDb.OleDbType dbType, int size, System.Data.ParameterDirection direction, byte precision, byte scale, string? sourceColumn, System.Data.DataRowVersion sourceVersion, bool sourceColumnNullMapping, object? value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public OleDbParameter(string? name, System.Data.OleDb.OleDbType dataType, int size, string? srcColumn) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public OleDbParameter(string? name, object? value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override System.Data.DbType DbType { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
[System.ComponentModel.RefreshPropertiesAttribute(System.ComponentModel.RefreshProperties.All)]
public override System.Data.ParameterDirection Direction { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
public override bool IsNullable { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
[System.ComponentModel.RefreshPropertiesAttribute(System.ComponentModel.RefreshProperties.All)]
[System.Data.Common.DbProviderSpecificTypePropertyAttribute(true)]
public System.Data.OleDb.OleDbType OleDbType { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
[System.Diagnostics.CodeAnalysis.AllowNullAttribute]
public override string ParameterName { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
[System.ComponentModel.DefaultValueAttribute((byte)0)]
public new byte Precision { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
[System.ComponentModel.DefaultValueAttribute((byte)0)]
public new byte Scale { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
public override int Size { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
[System.Diagnostics.CodeAnalysis.AllowNullAttribute]
public override string SourceColumn { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
public override bool SourceColumnNullMapping { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
public override System.Data.DataRowVersion SourceVersion { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
[System.ComponentModel.RefreshPropertiesAttribute(System.ComponentModel.RefreshProperties.All)]
[System.ComponentModel.TypeConverterAttribute(typeof(System.ComponentModel.StringConverter))]
public override object? Value { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
public override void ResetDbType() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public void ResetOleDbType() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
object System.ICloneable.Clone() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override string ToString() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
}
[System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DBParametersEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
public sealed partial class OleDbParameterCollection : System.Data.Common.DbParameterCollection
{
internal OleDbParameterCollection() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override int Count { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
public override bool IsFixedSize { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
public override bool IsReadOnly { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
public override bool IsSynchronized { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
[System.ComponentModel.BrowsableAttribute(false)]
[System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
public new System.Data.OleDb.OleDbParameter this[int index] { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
[System.ComponentModel.BrowsableAttribute(false)]
[System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
public new System.Data.OleDb.OleDbParameter this[string parameterName] { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
public override object SyncRoot { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
public System.Data.OleDb.OleDbParameter Add(System.Data.OleDb.OleDbParameter value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override int Add(object value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public System.Data.OleDb.OleDbParameter Add(string? parameterName, System.Data.OleDb.OleDbType oleDbType) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public System.Data.OleDb.OleDbParameter Add(string? parameterName, System.Data.OleDb.OleDbType oleDbType, int size) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public System.Data.OleDb.OleDbParameter Add(string? parameterName, System.Data.OleDb.OleDbType oleDbType, int size, string? sourceColumn) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
[System.ObsoleteAttribute("Add(String parameterName, Object value) has been deprecated. Use AddWithValue(String parameterName, Object value) instead.")]
public System.Data.OleDb.OleDbParameter Add(string? parameterName, object? value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override void AddRange(System.Array values) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public void AddRange(System.Data.OleDb.OleDbParameter[] values) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public System.Data.OleDb.OleDbParameter AddWithValue(string? parameterName, object? value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override void Clear() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public bool Contains(System.Data.OleDb.OleDbParameter value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override bool Contains(object value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override bool Contains(string value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override void CopyTo(System.Array array, int index) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public void CopyTo(System.Data.OleDb.OleDbParameter[] array, int index) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override System.Collections.IEnumerator GetEnumerator() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
protected override System.Data.Common.DbParameter GetParameter(int index) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
protected override System.Data.Common.DbParameter GetParameter(string parameterName) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public int IndexOf(System.Data.OleDb.OleDbParameter value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override int IndexOf(object value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override int IndexOf(string parameterName) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public void Insert(int index, System.Data.OleDb.OleDbParameter value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override void Insert(int index, object value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public void Remove(System.Data.OleDb.OleDbParameter value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override void Remove(object value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override void RemoveAt(int index) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override void RemoveAt(string parameterName) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
protected override void SetParameter(int index, System.Data.Common.DbParameter value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
protected override void SetParameter(string parameterName, System.Data.Common.DbParameter value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
}
public sealed partial class OleDbRowUpdatedEventArgs : System.Data.Common.RowUpdatedEventArgs
{
public OleDbRowUpdatedEventArgs(System.Data.DataRow dataRow, System.Data.IDbCommand? command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping) : base (default(System.Data.DataRow), default(System.Data.IDbCommand), default(System.Data.StatementType), default(System.Data.Common.DataTableMapping)) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public new System.Data.OleDb.OleDbCommand? Command { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
}
public delegate void OleDbRowUpdatedEventHandler(object sender, System.Data.OleDb.OleDbRowUpdatedEventArgs e);
public sealed partial class OleDbRowUpdatingEventArgs : System.Data.Common.RowUpdatingEventArgs
{
public OleDbRowUpdatingEventArgs(System.Data.DataRow dataRow, System.Data.IDbCommand? command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping) : base (default(System.Data.DataRow), default(System.Data.IDbCommand), default(System.Data.StatementType), default(System.Data.Common.DataTableMapping)) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
protected override System.Data.IDbCommand? BaseCommand { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
public new System.Data.OleDb.OleDbCommand? Command { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
}
public delegate void OleDbRowUpdatingEventHandler(object sender, System.Data.OleDb.OleDbRowUpdatingEventArgs e);
public sealed partial class OleDbSchemaGuid
{
public static readonly System.Guid Assertions;
public static readonly System.Guid Catalogs;
public static readonly System.Guid Character_Sets;
public static readonly System.Guid Check_Constraints;
public static readonly System.Guid Check_Constraints_By_Table;
public static readonly System.Guid Collations;
public static readonly System.Guid Columns;
public static readonly System.Guid Column_Domain_Usage;
public static readonly System.Guid Column_Privileges;
public static readonly System.Guid Constraint_Column_Usage;
public static readonly System.Guid Constraint_Table_Usage;
public static readonly System.Guid DbInfoKeywords;
public static readonly System.Guid DbInfoLiterals;
public static readonly System.Guid Foreign_Keys;
public static readonly System.Guid Indexes;
public static readonly System.Guid Key_Column_Usage;
public static readonly System.Guid Primary_Keys;
public static readonly System.Guid Procedures;
public static readonly System.Guid Procedure_Columns;
public static readonly System.Guid Procedure_Parameters;
public static readonly System.Guid Provider_Types;
public static readonly System.Guid Referential_Constraints;
public static readonly System.Guid SchemaGuids;
public static readonly System.Guid Schemata;
public static readonly System.Guid Sql_Languages;
public static readonly System.Guid Statistics;
public static readonly System.Guid Tables;
public static readonly System.Guid Tables_Info;
public static readonly System.Guid Table_Constraints;
public static readonly System.Guid Table_Privileges;
public static readonly System.Guid Table_Statistics;
public static readonly System.Guid Translations;
public static readonly System.Guid Trustee;
public static readonly System.Guid Usage_Privileges;
public static readonly System.Guid Views;
public static readonly System.Guid View_Column_Usage;
public static readonly System.Guid View_Table_Usage;
public OleDbSchemaGuid() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
}
public sealed partial class OleDbTransaction : System.Data.Common.DbTransaction
{
internal OleDbTransaction() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public new System.Data.OleDb.OleDbConnection? Connection { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
protected override System.Data.Common.DbConnection? DbConnection { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
public override System.Data.IsolationLevel IsolationLevel { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
public System.Data.OleDb.OleDbTransaction Begin() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public System.Data.OleDb.OleDbTransaction Begin(System.Data.IsolationLevel isolevel) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
public override void Commit() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
protected override void Dispose(bool disposing) { }
public override void Rollback() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
}
public enum OleDbType
{
Empty = 0,
SmallInt = 2,
Integer = 3,
Single = 4,
Double = 5,
Currency = 6,
Date = 7,
BSTR = 8,
IDispatch = 9,
Error = 10,
Boolean = 11,
Variant = 12,
IUnknown = 13,
Decimal = 14,
TinyInt = 16,
UnsignedTinyInt = 17,
UnsignedSmallInt = 18,
UnsignedInt = 19,
BigInt = 20,
UnsignedBigInt = 21,
Filetime = 64,
Guid = 72,
Binary = 128,
Char = 129,
WChar = 130,
Numeric = 131,
DBDate = 133,
DBTime = 134,
DBTimeStamp = 135,
PropVariant = 138,
VarNumeric = 139,
VarChar = 200,
LongVarChar = 201,
VarWChar = 202,
LongVarWChar = 203,
VarBinary = 204,
LongVarBinary = 205,
}
}
|