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

CreateRowUpdatedEvent() protected method

Initializes a new instance of the RowUpdatedEventArgs class.
protected CreateRowUpdatedEvent ( DataRow dataRow, IDbCommand command, StatementType statementType, DataTableMapping tableMapping ) : RowUpdatedEventArgs
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.RowUpdatedEventArgs
		protected override RowUpdatedEventArgs CreateRowUpdatedEvent(DataRow dataRow, IDbCommand command, StatementType statementType, DataTableMapping tableMapping)
		{
			return new SqliteRowUpdatedEventArgs (dataRow, command, statementType, tableMapping);
		}