Changeset: d6acf081c7ca for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=d6acf081c7ca Modified Files: java/src/nl/cwi/monetdb/jdbc/MonetResultSet.java Branch: Jun2010 Log Message:
be more specific to ease debugging diffs (167 lines): diff -r dfde8f752cbc -r d6acf081c7ca java/src/nl/cwi/monetdb/jdbc/MonetResultSet.java --- a/java/src/nl/cwi/monetdb/jdbc/MonetResultSet.java Wed Aug 11 10:40:31 2010 +0200 +++ b/java/src/nl/cwi/monetdb/jdbc/MonetResultSet.java Wed Aug 11 10:58:00 2010 +0200 @@ -280,19 +280,19 @@ return(absolute(1)); } - public Array getArray(int i) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public Array getArray(String colName) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } + public Array getArray(int i) throws SQLException { throw new SQLException("Method getArray not implemented yet, sorry!"); } + public Array getArray(String colName) throws SQLException { throw new SQLException("Method getArray not implemented yet, sorry!"); } /* Mapi doesn't allow something for streams at the moment, thus all not implemented for now */ - public InputStream getAsciiStream(int columnIndex) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public InputStream getAsciiStream(String columnName) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public InputStream getBinaryStream(int columnIndex) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public InputStream getBinaryStream(String columnName) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public InputStream getUnicodeStream(int columnIndex) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public InputStream getUnicodeStream(String columnName) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public Reader getCharacterStream(int columnIndex) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public Reader getCharacterStream(String columnName) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } + public InputStream getAsciiStream(int columnIndex) throws SQLException { throw new SQLException("Method getAsciiStream not implemented yet, sorry!"); } + public InputStream getAsciiStream(String columnName) throws SQLException { throw new SQLException("Method getAsciiStream not implemented yet, sorry!"); } + public InputStream getBinaryStream(int columnIndex) throws SQLException { throw new SQLException("Method getBinaryStream not implemented yet, sorry!"); } + public InputStream getBinaryStream(String columnName) throws SQLException { throw new SQLException("Method getBinaryStream not implemented yet, sorry!"); } + public InputStream getUnicodeStream(int columnIndex) throws SQLException { throw new SQLException("Method getUnicodeStream not implemented yet, sorry!"); } + public InputStream getUnicodeStream(String columnName) throws SQLException { throw new SQLException("Method getUnicodeStream not implemented yet, sorry!"); } + public Reader getCharacterStream(int columnIndex) throws SQLException { throw new SQLException("Method getCharacterStream not implemented yet, sorry!"); } + public Reader getCharacterStream(String columnName) throws SQLException { throw new SQLException("Method getCharacterStream not implemented yet, sorry!"); } /** * Retrieves the value of the designated column in the current row @@ -1384,8 +1384,8 @@ return(getObject(findColumn(colName), map)); } - public Ref getRef(int i) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public Ref getRef(String colName) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } + public Ref getRef(int i) throws SQLException { throw new SQLException("Method getRef not implemented yet, sorry!"); } + public Ref getRef(String colName) throws SQLException { throw new SQLException("Method getRef not implemented yet, sorry!"); } /** * Retrieves the current row number. The first row is number 1, the second @@ -2056,64 +2056,64 @@ /* these methods are all related to updateable result sets, which we currently do not support */ - public void cancelRowUpdates() throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void deleteRow() throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void insertRow() throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void moveToCurrentRow() throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void moveToInsertRow() throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void refreshRow() throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public boolean rowDeleted() throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public boolean rowInserted() throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public boolean rowUpdated() throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void setFetchDirection(int direction) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void setFetchSize(int rows) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateArray(int columnIndex, Array x) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateArray(String columnName, Array x) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateAsciiStream(int columnIndex, InputStream x, int length) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateAsciiStream(String columnName, InputStream x, int length) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateBigDecimal(int columnIndex, BigDecimal x) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateBigDecimal(String columnName, BigDecimal x) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateBinaryStream(int columnIndex, InputStream x, int length) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateBinaryStream(String columnName, InputStream x, int length) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateBlob(int columnIndex, Blob x) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateBlob(String columnName, Blob x) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateBoolean(int columnIndex, boolean x) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateBoolean(String columnName, boolean x) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateByte(int columnIndex, byte x) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateByte(String columnName, byte x) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateBytes(int columnIndex, byte[] x) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateBytes(String columnName, byte[] x) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateCharacterStream(int columnIndex, Reader x, int length) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateCharacterStream(String columnName, Reader reader, int length) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateClob(int columnIndex, Clob x) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateClob(String columnName, Clob x) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateDate(int columnIndex, java.sql.Date x) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateDate(String columnName, java.sql.Date x) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateDouble(int columnIndex, double x) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateDouble(String columnName, double x) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateFloat(int columnIndex, float x) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateFloat(String columnName, float x) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateInt(int columnIndex, int x) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateInt(String columnName, int x) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateLong(int columnIndex, long x) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateLong(String columnName, long x) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateNull(int columnIndex) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateNull(String columnName) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateObject(int columnIndex, Object x) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateObject(int columnIndex, Object x, int scale) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateObject(String columnName, Object x) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateObject(String columnName, Object x, int scale) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateRef(int columnIndex, Ref x) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateRef(String columnName, Ref x) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateRow() throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateShort(int columnIndex, short x) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateShort(String columnName, short x) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateString(int columnIndex, String x) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateString(String columnName, String x) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateTime(int columnIndex, Time x) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateTime(String columnName, Time x) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateTimestamp(int columnIndex, Timestamp x) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } - public void updateTimestamp(String columnName, Timestamp x) throws SQLException { throw new SQLException("Method not implemented yet, sorry!"); } + public void cancelRowUpdates() throws SQLException { throw new SQLException("Method cancelRowUpdates not implemented yet, sorry!"); } + public void deleteRow() throws SQLException { throw new SQLException("Method deleteRow not implemented yet, sorry!"); } + public void insertRow() throws SQLException { throw new SQLException("Method insertRow not implemented yet, sorry!"); } + public void moveToCurrentRow() throws SQLException { throw new SQLException("Method moveToCurrentRow not implemented yet, sorry!"); } + public void moveToInsertRow() throws SQLException { throw new SQLException("Method moveToInsertRow not implemented yet, sorry!"); } + public void refreshRow() throws SQLException { throw new SQLException("Method refreshRow not implemented yet, sorry!"); } + public boolean rowDeleted() throws SQLException { throw new SQLException("Method rowDeleted not implemented yet, sorry!"); } + public boolean rowInserted() throws SQLException { throw new SQLException("Method rowInserted not implemented yet, sorry!"); } + public boolean rowUpdated() throws SQLException { throw new SQLException("Method rowUpdated not implemented yet, sorry!"); } + public void setFetchDirection(int direction) throws SQLException { throw new SQLException("Method setFetchDirection not implemented yet, sorry!"); } + public void setFetchSize(int rows) throws SQLException { throw new SQLException("Method setFetchSize not implemented yet, sorry!"); } + public void updateArray(int columnIndex, Array x) throws SQLException { throw new SQLException("Method updateArray not implemented yet, sorry!"); } + public void updateArray(String columnName, Array x) throws SQLException { throw new SQLException("Method updateArray not implemented yet, sorry!"); } + public void updateAsciiStream(int columnIndex, InputStream x, int length) throws SQLException { throw new SQLException("Method updateAsciiStream not implemented yet, sorry!"); } + public void updateAsciiStream(String columnName, InputStream x, int length) throws SQLException { throw new SQLException("Method updateAsciiStream not implemented yet, sorry!"); } + public void updateBigDecimal(int columnIndex, BigDecimal x) throws SQLException { throw new SQLException("Method updateBigDecimal not implemented yet, sorry!"); } + public void updateBigDecimal(String columnName, BigDecimal x) throws SQLException { throw new SQLException("Method updateBigDecimal not implemented yet, sorry!"); } + public void updateBinaryStream(int columnIndex, InputStream x, int length) throws SQLException { throw new SQLException("Method updateBinaryStream not implemented yet, sorry!"); } + public void updateBinaryStream(String columnName, InputStream x, int length) throws SQLException { throw new SQLException("Method updateBinaryStream not implemented yet, sorry!"); } + public void updateBlob(int columnIndex, Blob x) throws SQLException { throw new SQLException("Method updateBlob not implemented yet, sorry!"); } + public void updateBlob(String columnName, Blob x) throws SQLException { throw new SQLException("Method updateBlob not implemented yet, sorry!"); } + public void updateBoolean(int columnIndex, boolean x) throws SQLException { throw new SQLException("Method updateBoolean not implemented yet, sorry!"); } + public void updateBoolean(String columnName, boolean x) throws SQLException { throw new SQLException("Method updateBoolean not implemented yet, sorry!"); } + public void updateByte(int columnIndex, byte x) throws SQLException { throw new SQLException("Method updateByte not implemented yet, sorry!"); } + public void updateByte(String columnName, byte x) throws SQLException { throw new SQLException("Method updateByte not implemented yet, sorry!"); } + public void updateBytes(int columnIndex, byte[] x) throws SQLException { throw new SQLException("Method updateBytes not implemented yet, sorry!"); } + public void updateBytes(String columnName, byte[] x) throws SQLException { throw new SQLException("Method updateBytes not implemented yet, sorry!"); } + public void updateCharacterStream(int columnIndex, Reader x, int length) throws SQLException { throw new SQLException("Method updateCharacterStream not implemented yet, sorry!"); } + public void updateCharacterStream(String columnName, Reader reader, int length) throws SQLException { throw new SQLException("Method updateCharacterStream not implemented yet, sorry!"); } + public void updateClob(int columnIndex, Clob x) throws SQLException { throw new SQLException("Method updateClob not implemented yet, sorry!"); } + public void updateClob(String columnName, Clob x) throws SQLException { throw new SQLException("Method updateClob not implemented yet, sorry!"); } + public void updateDate(int columnIndex, java.sql.Date x) throws SQLException { throw new SQLException("Method updateDate not implemented yet, sorry!"); } + public void updateDate(String columnName, java.sql.Date x) throws SQLException { throw new SQLException("Method updateDate not implemented yet, sorry!"); } + public void updateDouble(int columnIndex, double x) throws SQLException { throw new SQLException("Method updateDouble not implemented yet, sorry!"); } + public void updateDouble(String columnName, double x) throws SQLException { throw new SQLException("Method updateDouble not implemented yet, sorry!"); } + public void updateFloat(int columnIndex, float x) throws SQLException { throw new SQLException("Method updateFloat not implemented yet, sorry!"); } + public void updateFloat(String columnName, float x) throws SQLException { throw new SQLException("Method updateFloat not implemented yet, sorry!"); } + public void updateInt(int columnIndex, int x) throws SQLException { throw new SQLException("Method updateInt not implemented yet, sorry!"); } + public void updateInt(String columnName, int x) throws SQLException { throw new SQLException("Method updateInt not implemented yet, sorry!"); } + public void updateLong(int columnIndex, long x) throws SQLException { throw new SQLException("Method updateLong not implemented yet, sorry!"); } + public void updateLong(String columnName, long x) throws SQLException { throw new SQLException("Method updateLong not implemented yet, sorry!"); } + public void updateNull(int columnIndex) throws SQLException { throw new SQLException("Method updateNull not implemented yet, sorry!"); } + public void updateNull(String columnName) throws SQLException { throw new SQLException("Method updateNull not implemented yet, sorry!"); } + public void updateObject(int columnIndex, Object x) throws SQLException { throw new SQLException("Method updateObject not implemented yet, sorry!"); } + public void updateObject(int columnIndex, Object x, int scale) throws SQLException { throw new SQLException("Method updateObject not implemented yet, sorry!"); } + public void updateObject(String columnName, Object x) throws SQLException { throw new SQLException("Method updateObject not implemented yet, sorry!"); } + public void updateObject(String columnName, Object x, int scale) throws SQLException { throw new SQLException("Method updateObject not implemented yet, sorry!"); } + public void updateRef(int columnIndex, Ref x) throws SQLException { throw new SQLException("Method updateRef not implemented yet, sorry!"); } + public void updateRef(String columnName, Ref x) throws SQLException { throw new SQLException("Method updateRef not implemented yet, sorry!"); } + public void updateRow() throws SQLException { throw new SQLException("Method updateRow not implemented yet, sorry!"); } + public void updateShort(int columnIndex, short x) throws SQLException { throw new SQLException("Method updateShort not implemented yet, sorry!"); } + public void updateShort(String columnName, short x) throws SQLException { throw new SQLException("Method updateShort not implemented yet, sorry!"); } + public void updateString(int columnIndex, String x) throws SQLException { throw new SQLException("Method updateString not implemented yet, sorry!"); } + public void updateString(String columnName, String x) throws SQLException { throw new SQLException("Method updateString not implemented yet, sorry!"); } + public void updateTime(int columnIndex, Time x) throws SQLException { throw new SQLException("Method updateTime not implemented yet, sorry!"); } + public void updateTime(String columnName, Time x) throws SQLException { throw new SQLException("Method updateTime not implemented yet, sorry!"); } + public void updateTimestamp(int columnIndex, Timestamp x) throws SQLException { throw new SQLException("Method updateTimestamp not implemented yet, sorry!"); } + public void updateTimestamp(String columnName, Timestamp x) throws SQLException { throw new SQLException("Method updateTimestamp not implemented yet, sorry!"); } // Chapter 14.2.3.3 Sun JDBC 3.0 Specification /** _______________________________________________ Checkin-list mailing list Checkin-list@monetdb.org http://mail.monetdb.org/mailman/listinfo/checkin-list