public override void Cancel()
 {
     CheckConnection();
     if (statement != null)
     {
         try
         {
             statement.cancel();
         }
         catch (org.h2.jdbc.JdbcSQLException ex)
         {
             throw new H2Exception(ex);
         }
     }
 }