From 95d4aea6a0930d2bf64e71032761bbc9356b301e Mon Sep 17 00:00:00 2001 From: leo Date: Thu, 31 Jan 2008 04:03:52 +0000 Subject: [PATCH] maintain the compliance to Java 1.5 git-svn-id: http://www.xerial.org/svn/project/XerialJ/trunk/sqlite-jdbc@1985 ae02f08e-27ec-0310-ae8c-8ba02fe2eafd --- .classpath | 2 +- .settings/org.eclipse.jdt.core.prefs | 5 +++ pom.xml | 22 ++++++++--- src/main/java/org/sqlite/Conn.java | 37 ++++++------------ src/main/java/org/sqlite/MetaData.java | 12 +----- src/main/java/org/sqlite/PrepStmt.java | 70 ---------------------------------- src/main/java/org/sqlite/Stmt.java | 53 +------------------------ 7 files changed, 37 insertions(+), 164 deletions(-) create mode 100644 .settings/org.eclipse.jdt.core.prefs diff --git a/.classpath b/.classpath index 14231f3..a6d69e8 100644 --- a/.classpath +++ b/.classpath @@ -1,6 +1,6 @@ - + diff --git a/.settings/org.eclipse.jdt.core.prefs b/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 0000000..9410230 --- /dev/null +++ b/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,5 @@ +#Thu Jan 31 12:49:01 GMT+09:00 2008 +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.source=1.5 +org.eclipse.jdt.core.compiler.compliance=1.5 diff --git a/pom.xml b/pom.xml index b1f0514..e9f3d83 100644 --- a/pom.xml +++ b/pom.xml @@ -1,5 +1,6 @@ - @@ -12,7 +13,7 @@ 4.0.0 org.xerial sqlite-jdbc - v038.2 + v038.3 SQLite JDBC SQLite JDBC library @@ -35,11 +36,22 @@ native/** org/** - + - - + + + + org.apache.maven.plugins + maven-compiler-plugin + + 1.5 + 1.5 + + + + + diff --git a/src/main/java/org/sqlite/Conn.java b/src/main/java/org/sqlite/Conn.java index 9b6237c..9612800 100644 --- a/src/main/java/org/sqlite/Conn.java +++ b/src/main/java/org/sqlite/Conn.java @@ -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 unwrap(Class iface) throws SQLException { - throw new SQLException("not yet implemented"); - + throw new SQLException("unimplemented"); } } diff --git a/src/main/java/org/sqlite/MetaData.java b/src/main/java/org/sqlite/MetaData.java index 4d2f4d5..145e305 100644 --- a/src/main/java/org/sqlite/MetaData.java +++ b/src/main/java/org/sqlite/MetaData.java @@ -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 unwrap(Class iface) throws SQLException { throw new SQLException("not yet implemented"); diff --git a/src/main/java/org/sqlite/PrepStmt.java b/src/main/java/org/sqlite/PrepStmt.java index f53669a..2f793e7 100644 --- a/src/main/java/org/sqlite/PrepStmt.java +++ b/src/main/java/org/sqlite/PrepStmt.java @@ -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 unwrap(Class 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 diff --git a/src/main/java/org/sqlite/Stmt.java b/src/main/java/org/sqlite/Stmt.java index 5fe4b57..193365f 100644 --- a/src/main/java/org/sqlite/Stmt.java +++ b/src/main/java/org/sqlite/Stmt.java @@ -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 unwrap(Class 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"); } + } -- 2.11.0