using Microsoft.Data.Sqlite; using System; using System.Collections.Generic; using System.Data; using System.Data.Common; using System.Text; namespace ConsoleApp1 { /// /// Represents the method that handles the RowUpdated events. /// /// The source of the event. /// A SqliteRowUpdatedEventArgs that contains the event data. public delegate void SqliteRowUpdatedEventHandler(Object sender, SqliteRowUpdatedEventArgs e); /// /// Represents the method that handles the RowUpdating events. /// /// The source of the event. /// A SqliteRowUpdatingEventArgs that contains the event data. public delegate void SqliteRowUpdatingEventHandler(Object sender, SqliteRowUpdatingEventArgs e); /// /// This class represents an adapter from many commands: select, update, insert and delete to fill Datasets. /// [System.ComponentModel.DesignerCategory("")] public sealed class SqliteDataAdapter : DbDataAdapter { /// /// Row updated event. /// public event SqliteRowUpdatedEventHandler RowUpdated; /// /// Row updating event. /// public event SqliteRowUpdatingEventHandler RowUpdating; /// /// Default constructor. /// public SqliteDataAdapter() { } /// /// Constructor. /// /// public SqliteDataAdapter(SqliteCommand selectCommand) { SelectCommand = selectCommand; } /// /// Constructor. /// /// /// public SqliteDataAdapter(string selectCommandText, SqliteConnection selectConnection) : this(new SqliteCommand(selectCommandText, selectConnection)) { } /// /// Constructor. /// /// /// public SqliteDataAdapter(string selectCommandText, string selectConnectionString) : this(selectCommandText, new SqliteConnection(selectConnectionString)) { } /// /// Create row updated event. /// protected override RowUpdatedEventArgs CreateRowUpdatedEvent(DataRow dataRow, IDbCommand command, System.Data.StatementType statementType, DataTableMapping tableMapping) { return new SqliteRowUpdatedEventArgs(dataRow, command, statementType, tableMapping); } /// /// Create row updating event. /// protected override RowUpdatingEventArgs CreateRowUpdatingEvent(DataRow dataRow, IDbCommand command, System.Data.StatementType statementType, DataTableMapping tableMapping) { return new SqliteRowUpdatingEventArgs(dataRow, command, statementType, tableMapping); } /// /// Raise the RowUpdated event. /// /// protected override void OnRowUpdated(RowUpdatedEventArgs value) { //base.OnRowUpdated(value); if (RowUpdated != null && value is SqliteRowUpdatedEventArgs) RowUpdated(this, (SqliteRowUpdatedEventArgs)value); } /// /// Raise the RowUpdating event. /// /// protected override void OnRowUpdating(RowUpdatingEventArgs value) { if (RowUpdating != null && value is SqliteRowUpdatingEventArgs) RowUpdating(this, (SqliteRowUpdatingEventArgs)value); } /// /// Delete command. /// public new SqliteCommand DeleteCommand { get { return (SqliteCommand)base.DeleteCommand; } set { base.DeleteCommand = value; } } /// /// Select command. /// public new SqliteCommand SelectCommand { get { return (SqliteCommand)base.SelectCommand; } set { base.SelectCommand = value; } } /// /// Update command. /// public new SqliteCommand UpdateCommand { get { return (SqliteCommand)base.UpdateCommand; } set { base.UpdateCommand = value; } } /// /// Insert command. /// public new SqliteCommand InsertCommand { get { return (SqliteCommand)base.InsertCommand; } set { base.InsertCommand = value; } } } #pragma warning disable 1591 public class SqliteRowUpdatingEventArgs : RowUpdatingEventArgs { public SqliteRowUpdatingEventArgs(DataRow dataRow, IDbCommand command, System.Data.StatementType statementType, DataTableMapping tableMapping) : base(dataRow, command, statementType, tableMapping) { } } public class SqliteRowUpdatedEventArgs : RowUpdatedEventArgs { public SqliteRowUpdatedEventArgs(DataRow dataRow, IDbCommand command, System.Data.StatementType statementType, DataTableMapping tableMapping) : base(dataRow, command, statementType, tableMapping) { } } #pragma warning restore 1591 }