Community.CsharpSqlite.SQLiteClient.SqliteDataAdapter.CreateRowUpdatingEvent C# (CSharp) Method

CreateRowUpdatingEvent() protected method

protected CreateRowUpdatingEvent ( DataRow dataRow, IDbCommand command, StatementType statementType, DataTableMapping tableMapping ) : RowUpdatingEventArgs
dataRow System.Data.DataRow The DataRow used to update the data source.
command IDbCommand The IDbCommand executed during the Update.
statementType StatementType Whether the command is an UPDATE, INSERT, DELETE, or SELECT statement.
tableMapping System.Data.Common.DataTableMapping A DataTableMapping object.
return System.Data.Common.RowUpdatingEventArgs
		protected override RowUpdatingEventArgs CreateRowUpdatingEvent(DataRow dataRow, IDbCommand command, StatementType statementType, DataTableMapping tableMapping)
		{
			return new SqliteRowUpdatingEventArgs(dataRow, command, statementType, tableMapping);
		}