You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by ka...@apache.org on 2012/07/24 19:07:57 UTC

svn commit: r1365173 - /db/derby/code/trunk/java/client/org/apache/derby/client/am/Statement.java

Author: kahatlen
Date: Tue Jul 24 17:07:56 2012
New Revision: 1365173

URL: http://svn.apache.org/viewvc?rev=1365173&view=rev
Log:
DERBY-5874: Remove JDBC 3 constants from client.am.Statement

Modified:
    db/derby/code/trunk/java/client/org/apache/derby/client/am/Statement.java

Modified: db/derby/code/trunk/java/client/org/apache/derby/client/am/Statement.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/client/org/apache/derby/client/am/Statement.java?rev=1365173&r1=1365172&r2=1365173&view=diff
==============================================================================
--- db/derby/code/trunk/java/client/org/apache/derby/client/am/Statement.java (original)
+++ db/derby/code/trunk/java/client/org/apache/derby/client/am/Statement.java Tue Jul 24 17:07:56 2012
@@ -28,21 +28,6 @@ import org.apache.derby.shared.common.sa
 
 public class Statement implements java.sql.Statement, StatementCallbackInterface{
 
-    // JDBC 3 constant indicating that the current ResultSet object
-    // should be closed when calling getMoreResults.
-    // Constant value matches that defined by JDBC 3 java.sql.Statement.CLOSE_CURRENT_RESULT
-    public final static int CLOSE_CURRENT_RESULT = 1;
-
-    // JDBC 3 constant indicating that the current ResultSet object
-    // should not be closed when calling getMoreResults.
-    // Constant value matches that defined by JDBC 3 java.sql.Statement.KEEP_CURRENT_RESULT
-    public final static int KEEP_CURRENT_RESULT = 2;
-
-    // JDBC 3 constant indicating that all ResultSet objects that
-    // have previously been kept open should be closed when calling getMoreResults.
-    // Constant value matches that defined by JDBC 3 java.sql.Statement.CLOSE_ALL_RESULTS
-    public final static int CLOSE_ALL_RESULTS = 3;
-
     //---------------------navigational members-----------------------------------
 
     public MaterialStatement materialStatement_ = null;