OSDN Git Service

maintain the compliance to Java 1.5
authorleo <leo@ae02f08e-27ec-0310-ae8c-8ba02fe2eafd>
Thu, 31 Jan 2008 04:03:52 +0000 (04:03 +0000)
committerleo <leo@ae02f08e-27ec-0310-ae8c-8ba02fe2eafd>
Thu, 31 Jan 2008 04:03:52 +0000 (04:03 +0000)
git-svn-id: http://www.xerial.org/svn/project/XerialJ/trunk/sqlite-jdbc@1985 ae02f08e-27ec-0310-ae8c-8ba02fe2eafd

.classpath
.settings/org.eclipse.jdt.core.prefs [new file with mode: 0644]
pom.xml
src/main/java/org/sqlite/Conn.java
src/main/java/org/sqlite/MetaData.java
src/main/java/org/sqlite/PrepStmt.java
src/main/java/org/sqlite/Stmt.java

index 14231f3..a6d69e8 100644 (file)
@@ -1,6 +1,6 @@
 <classpath>\r
   <classpathentry kind="src" path="src/main/java"/>\r
-  <classpathentry kind="src" path="src/main/resources" including="native/${sqlite.os}/**|org/**" excluding="**/*.java"/>\r
+  <classpathentry kind="src" path="src/main/resources" including="native/**|org/**" excluding="**/*.java"/>\r
   <classpathentry kind="src" path="src/test/java" output="target/test-classes"/>\r
   <classpathentry kind="output" path="target/classes"/>\r
   <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>\r
diff --git a/.settings/org.eclipse.jdt.core.prefs b/.settings/org.eclipse.jdt.core.prefs
new file mode 100644 (file)
index 0000000..9410230
--- /dev/null
@@ -0,0 +1,5 @@
+#Thu Jan 31 12:49:01 GMT+09:00 2008\r
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5\r
+eclipse.preferences.version=1\r
+org.eclipse.jdt.core.compiler.source=1.5\r
+org.eclipse.jdt.core.compiler.compliance=1.5\r
diff --git a/pom.xml b/pom.xml
index b1f0514..e9f3d83 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -1,5 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>\r
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"\r
+<project xmlns="http://maven.apache.org/POM/4.0.0"\r
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"\r
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">\r
 \r
 \r
@@ -12,7 +13,7 @@
   <modelVersion>4.0.0</modelVersion>\r
   <groupId>org.xerial</groupId>\r
   <artifactId>sqlite-jdbc</artifactId>\r
-  <version>v038.2</version>\r
+  <version>v038.3</version>\r
   <name>SQLite JDBC</name>\r
   <description>SQLite JDBC library</description>\r
 \r
         <includes>\r
           <include>native/**</include>\r
           <include>org/**</include>\r
-        </includes> \r
+        </includes>\r
       </resource>\r
     </resources>\r
-  </build>  \r
-  \r
+\r
+    <plugins>\r
+      <plugin>\r
+        <groupId>org.apache.maven.plugins</groupId>\r
+        <artifactId>maven-compiler-plugin</artifactId>\r
+        <configuration>\r
+          <source>1.5</source>\r
+          <target>1.5</target>\r
+        </configuration>\r
+      </plugin>\r
+    </plugins>\r
+  </build>\r
+\r
 \r
 </project>\r
 \r
index 9b6237c..9612800 100644 (file)
@@ -346,91 +346,76 @@ class Conn implements Connection
         throw new SQLException("unsupported by SQLite: savepoints");
     }
 
-    @Override
     public Array createArrayOf(String typeName, Object[] elements) throws SQLException
     {
-        throw new SQLException("not yet implemented");
+        throw new SQLException("unimplemented");
     }
 
-    @Override
     public Blob createBlob() throws SQLException
     {
-        throw new SQLException("not yet implemented");
+        throw new SQLException("unimplemented");
     }
 
-    @Override
     public Clob createClob() throws SQLException
     {
-        throw new SQLException("not yet implemented");
+        throw new SQLException("unimplemented");
 
     }
 
-    @Override
     public NClob createNClob() throws SQLException
     {
-        throw new SQLException("not yet implemented");
+        throw new SQLException("unimplemented");
 
     }
 
-    @Override
     public SQLXML createSQLXML() throws SQLException
     {
-        throw new SQLException("not yet implemented");
-
+        throw new SQLException("unimplemented");
     }
 
-    @Override
     public Struct createStruct(String typeName, Object[] attributes) throws SQLException
     {
-        throw new SQLException("not yet implemented");
+        throw new SQLException("unimplemented");
 
     }
 
-    @Override
     public Properties getClientInfo() throws SQLException
     {
-        throw new SQLException("not yet implemented");
+        throw new SQLException("unimplemented");
 
     }
 
-    @Override
     public String getClientInfo(String name) throws SQLException
     {
-        throw new SQLException("not yet implemented");
+        throw new SQLException("unimplemented");
 
     }
 
-    @Override
     public boolean isValid(int timeout) throws SQLException
     {
-        throw new SQLException("not yet implemented");
+        throw new SQLException("unimplemented");
 
     }
 
-    @Override
     public void setClientInfo(Properties properties) throws SQLClientInfoException
     {
         throw new SQLClientInfoException();
     }
 
-    @Override
     public void setClientInfo(String name, String value) throws SQLClientInfoException
     {
         throw new SQLClientInfoException();
     }
 
-    @Override
     public boolean isWrapperFor(Class< ? > iface) throws SQLException
     {
-        throw new SQLException("not yet implemented");
+        throw new SQLException("unimplemented");
 
     }
 
-    @Override
     public <T> T unwrap(Class<T> iface) throws SQLException
     {
-        throw new SQLException("not yet implemented");
-
+        throw new SQLException("unimplemented");
     }
 
 }
index 4d2f4d5..145e305 100644 (file)
@@ -768,7 +768,8 @@ class MetaData implements DatabaseMetaData
     {
         return true;
     } // TODO:
-                                                                    // check
+
+    // check
 
     public boolean supportsSubqueriesInIns()
     {
@@ -1171,62 +1172,53 @@ class MetaData implements DatabaseMetaData
         return buf.toString();
     }
 
-    @Override
     public boolean autoCommitFailureClosesAllResultSets() throws SQLException
     {
         throw new SQLException("not yet implemented");
     }
 
-    @Override
     public ResultSet getClientInfoProperties() throws SQLException
     {
         throw new SQLException("not yet implemented");
 
     }
 
-    @Override
     public ResultSet getFunctionColumns(String catalog, String schemaPattern, String functionNamePattern,
             String columnNamePattern) throws SQLException
     {
         throw new SQLException("not yet implemented");
     }
 
-    @Override
     public ResultSet getFunctions(String catalog, String schemaPattern, String functionNamePattern) throws SQLException
     {
         throw new SQLException("not yet implemented");
 
     }
 
-    @Override
     public RowIdLifetime getRowIdLifetime() throws SQLException
     {
         throw new SQLException("not yet implemented");
 
     }
 
-    @Override
     public ResultSet getSchemas(String catalog, String schemaPattern) throws SQLException
     {
         throw new SQLException("not yet implemented");
 
     }
 
-    @Override
     public boolean supportsStoredFunctionsUsingCallSyntax() throws SQLException
     {
         throw new SQLException("not yet implemented");
 
     }
 
-    @Override
     public boolean isWrapperFor(Class< ? > iface) throws SQLException
     {
         throw new SQLException("not yet implemented");
 
     }
 
-    @Override
     public <T> T unwrap(Class<T> iface) throws SQLException
     {
         throw new SQLException("not yet implemented");
index f53669a..2f793e7 100644 (file)
@@ -322,14 +322,12 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
         return new SQLException("not supported by PreparedStatment");
     }
 
-    @Override
     public void setAsciiStream(int parameterIndex, InputStream x) throws SQLException
     {
         // TODO Auto-generated method stub
         throw new SQLException("not yet implemented");
     }
 
-    @Override
     public void setAsciiStream(int parameterIndex, InputStream x, long length) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -337,7 +335,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void setBinaryStream(int parameterIndex, InputStream x) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -345,7 +342,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void setBinaryStream(int parameterIndex, InputStream x, long length) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -353,7 +349,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void setBlob(int parameterIndex, InputStream inputStream) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -361,7 +356,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void setBlob(int parameterIndex, InputStream inputStream, long length) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -369,7 +363,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void setCharacterStream(int parameterIndex, Reader reader) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -377,7 +370,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void setCharacterStream(int parameterIndex, Reader reader, long length) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -385,7 +377,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void setClob(int parameterIndex, Reader reader) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -393,7 +384,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void setClob(int parameterIndex, Reader reader, long length) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -401,7 +391,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void setNCharacterStream(int parameterIndex, Reader value) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -409,7 +398,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void setNCharacterStream(int parameterIndex, Reader value, long length) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -417,7 +405,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void setNClob(int parameterIndex, NClob value) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -425,7 +412,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void setNClob(int parameterIndex, Reader reader) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -433,7 +419,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void setNClob(int parameterIndex, Reader reader, long length) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -441,7 +426,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void setNString(int parameterIndex, String value) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -449,7 +433,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void setRowId(int parameterIndex, RowId x) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -457,7 +440,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void setSQLXML(int parameterIndex, SQLXML xmlObject) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -465,19 +447,16 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public boolean isClosed() throws SQLException
     {
         throw new SQLException("not yet implemented");
     }
 
-    @Override
     public boolean isPoolable() throws SQLException
     {
         throw new SQLException("not yet implemented");
     }
 
-    @Override
     public void setPoolable(boolean poolable) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -485,88 +464,74 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public boolean isWrapperFor(Class< ? > iface) throws SQLException
     {
         throw new SQLException("not yet implemented");
     }
 
-    @Override
     public <T> T unwrap(Class<T> iface) throws SQLException
     {
         throw new SQLException("not yet implemented");
     }
 
-    @Override
     public int getHoldability() throws SQLException
     {
         throw new SQLException("not yet implemented");
     }
 
-    @Override
     public Reader getNCharacterStream(int columnIndex) throws SQLException
     {
         throw new SQLException("not yet implemented");
     }
 
-    @Override
     public Reader getNCharacterStream(String columnLabel) throws SQLException
     {
         throw new SQLException("not yet implemented");
     }
 
-    @Override
     public NClob getNClob(int columnIndex) throws SQLException
     {
         throw new SQLException("not yet implemented");
     }
 
-    @Override
     public NClob getNClob(String columnLabel) throws SQLException
     {
         throw new SQLException("not yet implemented");
 
     }
 
-    @Override
     public String getNString(int columnIndex) throws SQLException
     {
         throw new SQLException("not yet implemented");
     }
 
-    @Override
     public String getNString(String columnLabel) throws SQLException
     {
         throw new SQLException("not yet implemented");
     }
 
-    @Override
     public RowId getRowId(int columnIndex) throws SQLException
     {
         throw new SQLException("not yet implemented");
 
     }
 
-    @Override
     public RowId getRowId(String columnLabel) throws SQLException
     {
         throw new SQLException("not yet implemented");
 
     }
 
-    @Override
     public SQLXML getSQLXML(int columnIndex) throws SQLException
     {
         throw new SQLException("not yet implemented");
     }
 
-    @Override
     public SQLXML getSQLXML(String columnLabel) throws SQLException
     {
         throw new SQLException("not yet implemented");
     }
 
-    @Override
     public void updateAsciiStream(int columnIndex, InputStream x) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -574,7 +539,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void updateAsciiStream(String columnLabel, InputStream x) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -582,7 +546,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void updateAsciiStream(int columnIndex, InputStream x, long length) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -590,7 +553,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void updateAsciiStream(String columnLabel, InputStream x, long length) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -598,7 +560,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void updateBinaryStream(int columnIndex, InputStream x) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -606,7 +567,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void updateBinaryStream(String columnLabel, InputStream x) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -614,7 +574,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void updateBinaryStream(int columnIndex, InputStream x, long length) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -622,7 +581,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void updateBinaryStream(String columnLabel, InputStream x, long length) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -630,7 +588,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void updateBlob(int columnIndex, InputStream inputStream) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -638,7 +595,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void updateBlob(String columnLabel, InputStream inputStream) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -646,7 +602,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void updateBlob(int columnIndex, InputStream inputStream, long length) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -654,7 +609,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void updateBlob(String columnLabel, InputStream inputStream, long length) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -662,7 +616,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void updateCharacterStream(int columnIndex, Reader x) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -670,7 +623,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void updateCharacterStream(String columnLabel, Reader reader) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -678,7 +630,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void updateCharacterStream(int columnIndex, Reader x, long length) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -686,7 +637,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void updateCharacterStream(String columnLabel, Reader reader, long length) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -694,7 +644,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void updateClob(int columnIndex, Reader reader) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -702,7 +651,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void updateClob(String columnLabel, Reader reader) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -710,7 +658,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void updateClob(int columnIndex, Reader reader, long length) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -718,7 +665,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void updateClob(String columnLabel, Reader reader, long length) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -726,7 +672,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void updateNCharacterStream(int columnIndex, Reader x) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -734,7 +679,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void updateNCharacterStream(String columnLabel, Reader reader) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -742,7 +686,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void updateNCharacterStream(int columnIndex, Reader x, long length) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -750,7 +693,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void updateNCharacterStream(String columnLabel, Reader reader, long length) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -758,7 +700,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void updateNClob(int columnIndex, NClob clob) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -766,7 +707,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void updateNClob(String columnLabel, NClob clob) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -774,7 +714,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void updateNClob(int columnIndex, Reader reader) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -782,7 +721,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void updateNClob(String columnLabel, Reader reader) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -790,7 +728,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void updateNClob(int columnIndex, Reader reader, long length) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -798,7 +735,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void updateNClob(String columnLabel, Reader reader, long length) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -806,7 +742,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void updateNString(int columnIndex, String string) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -814,7 +749,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void updateNString(String columnLabel, String string) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -822,7 +756,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void updateRowId(int columnIndex, RowId x) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -830,7 +763,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void updateRowId(String columnLabel, RowId x) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -838,7 +770,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void updateSQLXML(int columnIndex, SQLXML xmlObject) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -846,7 +777,6 @@ final class PrepStmt extends RS implements PreparedStatement, ParameterMetaData,
 
     }
 
-    @Override
     public void updateSQLXML(String columnLabel, SQLXML xmlObject) throws SQLException
     {
         // TODO Auto-generated method stub
index 5fe4b57..193365f 100644 (file)
@@ -181,116 +181,99 @@ class Stmt extends RS implements Statement, Codes
         return changes;
     }
 
-    @Override
     public boolean isClosed() throws SQLException
     {
         return false;
     }
 
-    @Override
     public boolean isPoolable() throws SQLException
     {
         return false;
     }
 
-    @Override
     public void setPoolable(boolean poolable) throws SQLException
     {
         throw new SQLException("not yet implemented");
 
     }
 
-    @Override
     public boolean isWrapperFor(Class< ? > iface) throws SQLException
     {
         throw new SQLException("not yet implemented");
     }
 
-    @Override
     public <T> T unwrap(Class<T> iface) throws SQLException
     {
         throw new SQLException("not yet implemented");
 
     }
 
-    @Override
     public int getHoldability() throws SQLException
     {
         throw new SQLException("not yet implemented");
 
     }
 
-    @Override
     public Reader getNCharacterStream(int columnIndex) throws SQLException
     {
         throw new SQLException("not yet implemented");
 
     }
 
-    @Override
     public Reader getNCharacterStream(String columnLabel) throws SQLException
     {
         throw new SQLException("not yet implemented");
 
     }
 
-    @Override
     public NClob getNClob(int columnIndex) throws SQLException
     {
         throw new SQLException("not yet implemented");
 
     }
 
-    @Override
     public NClob getNClob(String columnLabel) throws SQLException
     {
         throw new SQLException("not yet implemented");
 
     }
 
-    @Override
     public String getNString(int columnIndex) throws SQLException
     {
         throw new SQLException("not yet implemented");
 
     }
 
-    @Override
     public String getNString(String columnLabel) throws SQLException
     {
         throw new SQLException("not yet implemented");
 
     }
 
-    @Override
     public RowId getRowId(int columnIndex) throws SQLException
     {
         throw new SQLException("not yet implemented");
 
     }
 
-    @Override
     public RowId getRowId(String columnLabel) throws SQLException
     {
         throw new SQLException("not yet implemented");
 
     }
 
-    @Override
     public SQLXML getSQLXML(int columnIndex) throws SQLException
     {
         throw new SQLException("not yet implemented");
 
     }
 
-    @Override
     public SQLXML getSQLXML(String columnLabel) throws SQLException
     {
         throw new SQLException("not yet implemented");
 
     }
 
-    @Override
     public void updateAsciiStream(int columnIndex, InputStream x) throws SQLException
     {
         throw new SQLException("not yet implemented");
@@ -298,7 +281,6 @@ class Stmt extends RS implements Statement, Codes
 
     }
 
-    @Override
     public void updateAsciiStream(String columnLabel, InputStream x) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -306,7 +288,6 @@ class Stmt extends RS implements Statement, Codes
 
     }
 
-    @Override
     public void updateAsciiStream(int columnIndex, InputStream x, long length) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -314,7 +295,6 @@ class Stmt extends RS implements Statement, Codes
 
     }
 
-    @Override
     public void updateAsciiStream(String columnLabel, InputStream x, long length) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -322,7 +302,6 @@ class Stmt extends RS implements Statement, Codes
 
     }
 
-    @Override
     public void updateBinaryStream(int columnIndex, InputStream x) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -330,7 +309,6 @@ class Stmt extends RS implements Statement, Codes
 
     }
 
-    @Override
     public void updateBinaryStream(String columnLabel, InputStream x) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -338,7 +316,6 @@ class Stmt extends RS implements Statement, Codes
 
     }
 
-    @Override
     public void updateBinaryStream(int columnIndex, InputStream x, long length) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -346,7 +323,6 @@ class Stmt extends RS implements Statement, Codes
 
     }
 
-    @Override
     public void updateBinaryStream(String columnLabel, InputStream x, long length) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -354,7 +330,6 @@ class Stmt extends RS implements Statement, Codes
 
     }
 
-    @Override
     public void updateBlob(int columnIndex, InputStream inputStream) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -362,7 +337,6 @@ class Stmt extends RS implements Statement, Codes
 
     }
 
-    @Override
     public void updateBlob(String columnLabel, InputStream inputStream) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -370,7 +344,6 @@ class Stmt extends RS implements Statement, Codes
 
     }
 
-    @Override
     public void updateBlob(int columnIndex, InputStream inputStream, long length) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -378,7 +351,6 @@ class Stmt extends RS implements Statement, Codes
 
     }
 
-    @Override
     public void updateBlob(String columnLabel, InputStream inputStream, long length) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -386,7 +358,6 @@ class Stmt extends RS implements Statement, Codes
 
     }
 
-    @Override
     public void updateCharacterStream(int columnIndex, Reader x) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -394,7 +365,6 @@ class Stmt extends RS implements Statement, Codes
 
     }
 
-    @Override
     public void updateCharacterStream(String columnLabel, Reader reader) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -402,7 +372,6 @@ class Stmt extends RS implements Statement, Codes
 
     }
 
-    @Override
     public void updateCharacterStream(int columnIndex, Reader x, long length) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -410,7 +379,6 @@ class Stmt extends RS implements Statement, Codes
 
     }
 
-    @Override
     public void updateCharacterStream(String columnLabel, Reader reader, long length) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -418,7 +386,6 @@ class Stmt extends RS implements Statement, Codes
 
     }
 
-    @Override
     public void updateClob(int columnIndex, Reader reader) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -426,7 +393,6 @@ class Stmt extends RS implements Statement, Codes
 
     }
 
-    @Override
     public void updateClob(String columnLabel, Reader reader) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -434,7 +400,6 @@ class Stmt extends RS implements Statement, Codes
 
     }
 
-    @Override
     public void updateClob(int columnIndex, Reader reader, long length) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -442,7 +407,6 @@ class Stmt extends RS implements Statement, Codes
 
     }
 
-    @Override
     public void updateClob(String columnLabel, Reader reader, long length) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -450,7 +414,6 @@ class Stmt extends RS implements Statement, Codes
 
     }
 
-    @Override
     public void updateNCharacterStream(int columnIndex, Reader x) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -458,7 +421,6 @@ class Stmt extends RS implements Statement, Codes
 
     }
 
-    @Override
     public void updateNCharacterStream(String columnLabel, Reader reader) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -466,7 +428,6 @@ class Stmt extends RS implements Statement, Codes
 
     }
 
-    @Override
     public void updateNCharacterStream(int columnIndex, Reader x, long length) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -474,7 +435,6 @@ class Stmt extends RS implements Statement, Codes
 
     }
 
-    @Override
     public void updateNCharacterStream(String columnLabel, Reader reader, long length) throws SQLException
     {
         throw new SQLException("not yet implemented");
@@ -482,7 +442,6 @@ class Stmt extends RS implements Statement, Codes
 
     }
 
-    @Override
     public void updateNClob(int columnIndex, NClob clob) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -490,7 +449,6 @@ class Stmt extends RS implements Statement, Codes
 
     }
 
-    @Override
     public void updateNClob(String columnLabel, NClob clob) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -498,7 +456,6 @@ class Stmt extends RS implements Statement, Codes
 
     }
 
-    @Override
     public void updateNClob(int columnIndex, Reader reader) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -506,7 +463,6 @@ class Stmt extends RS implements Statement, Codes
 
     }
 
-    @Override
     public void updateNClob(String columnLabel, Reader reader) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -514,7 +470,6 @@ class Stmt extends RS implements Statement, Codes
 
     }
 
-    @Override
     public void updateNClob(int columnIndex, Reader reader, long length) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -522,7 +477,6 @@ class Stmt extends RS implements Statement, Codes
 
     }
 
-    @Override
     public void updateNClob(String columnLabel, Reader reader, long length) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -530,7 +484,6 @@ class Stmt extends RS implements Statement, Codes
 
     }
 
-    @Override
     public void updateNString(int columnIndex, String string) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -538,7 +491,6 @@ class Stmt extends RS implements Statement, Codes
 
     }
 
-    @Override
     public void updateNString(String columnLabel, String string) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -546,7 +498,6 @@ class Stmt extends RS implements Statement, Codes
 
     }
 
-    @Override
     public void updateRowId(int columnIndex, RowId x) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -554,7 +505,6 @@ class Stmt extends RS implements Statement, Codes
 
     }
 
-    @Override
     public void updateRowId(String columnLabel, RowId x) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -562,7 +512,6 @@ class Stmt extends RS implements Statement, Codes
 
     }
 
-    @Override
     public void updateSQLXML(int columnIndex, SQLXML xmlObject) throws SQLException
     {
         // TODO Auto-generated method stub
@@ -570,11 +519,11 @@ class Stmt extends RS implements Statement, Codes
 
     }
 
-    @Override
     public void updateSQLXML(String columnLabel, SQLXML xmlObject) throws SQLException
     {
         // TODO Auto-generated method stub
         throw new SQLException("not yet implemented");
 
     }
+
 }