Пример #1
0
 /// <summary>
 /// The	trigger	function for <see cref="CommandExecuting"/>	event.
 /// </summary>
 /// <param name="sqlCommand">The SQL command that is going for execution.</param>
 protected virtual void OnCommandExecuting(FbCommand sqlCommand)
 {
     if (CommandExecuting != null)
     {
         CommandExecutingEventArgs e = new CommandExecutingEventArgs(sqlCommand);
         CommandExecuting(this, e);
     }
 }
		/// <summary>
		/// The	trigger	function for <see cref="CommandExecuting"/>	event.
		/// </summary>
		/// <param name="sqlCommand">The SQL command that is going for execution.</param>
		protected virtual void OnCommandExecuting(FbCommand	sqlCommand)
		{
			if (CommandExecuting !=	null)
			{
				CommandExecutingEventArgs e = new CommandExecutingEventArgs(sqlCommand);
				CommandExecuting(this, e);
			}
		}