Adding JMCR-Stable version
[Benchmarks_CSolver.git] / JMCR-Stable / real-world application / MyDerby-10.3 / java / tools / org / apache / derby / impl / tools / ij / ijResult.java
diff --git a/JMCR-Stable/real-world application/MyDerby-10.3/java/tools/org/apache/derby/impl/tools/ij/ijResult.java b/JMCR-Stable/real-world application/MyDerby-10.3/java/tools/org/apache/derby/impl/tools/ij/ijResult.java
new file mode 100644 (file)
index 0000000..d9e3d6a
--- /dev/null
@@ -0,0 +1,70 @@
+/*\r
+\r
+   Derby - Class org.apache.derby.impl.tools.ij.ijResult\r
+\r
+   Licensed to the Apache Software Foundation (ASF) under one or more\r
+   contributor license agreements.  See the NOTICE file distributed with\r
+   this work for additional information regarding copyright ownership.\r
+   The ASF licenses this file to You under the Apache License, Version 2.0\r
+   (the "License"); you may not use this file except in compliance with\r
+   the License.  You may obtain a copy of the License at\r
+\r
+      http://www.apache.org/licenses/LICENSE-2.0\r
+\r
+   Unless required by applicable law or agreed to in writing, software\r
+   distributed under the License is distributed on an "AS IS" BASIS,\r
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+   See the License for the specific language governing permissions and\r
+   limitations under the License.\r
+\r
+ */\r
+\r
+package org.apache.derby.impl.tools.ij;\r
+\r
+import java.sql.Connection;\r
+import java.sql.ResultSet;\r
+import java.sql.Statement;\r
+import java.sql.PreparedStatement;\r
+import java.sql.SQLException;\r
+import java.sql.SQLWarning;\r
+import java.util.Vector;\r
+import java.util.List;\r
+\r
+/**\r
+ * This is a wrapper for results coming out of the\r
+ * ij parser.\r
+ *\r
+ *\r
+ */\r
+interface ijResult {\r
+       boolean isConnection();\r
+       boolean isStatement();\r
+       boolean isResultSet() throws SQLException;\r
+       boolean isUpdateCount() throws SQLException;\r
+       boolean isNextRowOfResultSet();\r
+       boolean isVector();\r
+       boolean isMulti();\r
+       boolean isException();\r
+       boolean isMultipleResultSetResult();\r
+       boolean hasWarnings() throws SQLException ;\r
+\r
+       Connection getConnection();\r
+       Statement getStatement();\r
+       int getUpdateCount() throws SQLException;\r
+       ResultSet getResultSet() throws SQLException;\r
+       List getMultipleResultSets();\r
+       ResultSet getNextRowOfResultSet();\r
+       Vector getVector();\r
+       SQLException getException();\r
+       int[] getColumnDisplayList();\r
+       int[] getColumnWidthList();\r
+\r
+       void closeStatement() throws SQLException ;\r
+\r
+       /*\r
+               Since they will all need to do warning calls/clears, may as\r
+               well stick it here.\r
+        */\r
+       SQLWarning getSQLWarnings() throws SQLException ;\r
+       void clearSQLWarnings() throws SQLException ;\r
+}\r