Adding JMCR-Stable version
[Benchmarks_CSolver.git] / JMCR-Stable / real-world application / MyDerby-10.3 / java / tools / org / apache / derby / impl / tools / ij / AsyncStatement.java
diff --git a/JMCR-Stable/real-world application/MyDerby-10.3/java/tools/org/apache/derby/impl/tools/ij/AsyncStatement.java b/JMCR-Stable/real-world application/MyDerby-10.3/java/tools/org/apache/derby/impl/tools/ij/AsyncStatement.java
new file mode 100644 (file)
index 0000000..d39416d
--- /dev/null
@@ -0,0 +1,59 @@
+/*\r
+\r
+   Derby - Class org.apache.derby.impl.tools.ij.AsyncStatement\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.Statement;\r
+import java.sql.SQLException;\r
+//import java.io.PrintStream;\r
+\r
+class AsyncStatement extends Thread {\r
+       Connection conn;\r
+       String stmt;\r
+       ijResult result;\r
+\r
+       AsyncStatement(Connection theConn, String theStmt) {\r
+               conn = theConn;\r
+               stmt = theStmt;\r
+       }\r
+\r
+       public void run() {\r
+               Statement aStatement = null;\r
+               try {\r
+                       aStatement = conn.createStatement();\r
+                       aStatement.execute(stmt);\r
+                       result = new ijStatementResult(aStatement,true);\r
+                       // caller must release its resources\r
+               } catch (SQLException e) {\r
+                       result = new ijExceptionResult(e);\r
+                       if (aStatement!=null) \r
+                               try {\r
+                                       aStatement.close();\r
+                               } catch (SQLException e2) {\r
+                                       // not a lot we can do here...\r
+                               }\r
+               }\r
+               aStatement = null;\r
+       }\r
+\r
+       ijResult getResult() { return result; }\r
+}\r