added empty result set testing
authorDave Cramer <[email protected]>
Fri, 14 Jun 2002 10:56:13 +0000 (10:56 +0000)
committerDave Cramer <[email protected]>
Fri, 14 Jun 2002 10:56:13 +0000 (10:56 +0000)
src/interfaces/jdbc/org/postgresql/test/jdbc2/MiscTest.java

index 8a13ddf3ee301c958d6731e3d168c616e42ce3f6..753d33a3e6a314ea8245d1a3ca3192cea1135320 100644 (file)
@@ -5,7 +5,7 @@ import junit.framework.TestCase;
 import java.sql.*;
 
 /*
- * $Id: MiscTest.java,v 1.5 2002/05/30 16:26:55 davec Exp $
+ * $Id: MiscTest.java,v 1.6 2002/06/14 10:56:13 davec Exp $
  *
  * Some simple tests based on problems reported by users. Hopefully these will
  * help prevent previous problems from re-occuring ;-)
@@ -52,6 +52,29 @@ public class MiscTest extends TestCase
        }
    }
 
+  public void testError()
+  {
+    Connection con = JDBC2Tests.openDB();
+       try
+       {
+
+      // transaction mode
+      con.setAutoCommit(false);
+      Statement stmt = con.createStatement();
+      stmt.execute("select 1/0");
+           fail( "Should not execute this, as a SQLException s/b thrown" );
+      con.commit();
+       }
+       catch ( Exception ex )
+       {
+       }
+    try
+    {
+      con.commit();
+      con.close();
+    }catch ( Exception ex) {}
+  }
+
    public void xtestLocking()
    {