Community.CsharpSqlite.SQLiteClient.SqliteDataAdapter.OnRowUpdating C# (CSharp) 메소드

OnRowUpdating() 보호된 메소드

Raises the RowUpdated event of a Sqlite data provider.
protected OnRowUpdating ( RowUpdatingEventArgs args ) : void
args System.Data.Common.RowUpdatingEventArgs A RowUpdatedEventArgs that contains the event data.
리턴 void
		protected override void OnRowUpdating (RowUpdatingEventArgs args)
		{
			if (RowUpdating != null)
				RowUpdating(this, args);
		}