提交 4af4dd39 authored 作者: Thomas Mueller's avatar Thomas Mueller

--no commit message

--no commit message
上级 617486c0
...@@ -13,14 +13,11 @@ import java.sql.Array; ...@@ -13,14 +13,11 @@ import java.sql.Array;
import java.sql.Blob; import java.sql.Blob;
import java.sql.Clob; import java.sql.Clob;
import java.sql.Date; import java.sql.Date;
import java.sql.NClob;
import java.sql.Ref; import java.sql.Ref;
import java.sql.ResultSet; import java.sql.ResultSet;
import java.sql.ResultSetMetaData; import java.sql.ResultSetMetaData;
import java.sql.RowId;
import java.sql.SQLException; import java.sql.SQLException;
import java.sql.SQLWarning; import java.sql.SQLWarning;
import java.sql.SQLXML;
import java.sql.Statement; import java.sql.Statement;
import java.sql.Time; import java.sql.Time;
import java.sql.Timestamp; import java.sql.Timestamp;
...@@ -29,6 +26,14 @@ import java.util.ArrayList; ...@@ -29,6 +26,14 @@ import java.util.ArrayList;
import java.util.Calendar; import java.util.Calendar;
import java.util.Map; import java.util.Map;
//#ifdef JDK16
/*
import java.sql.NClob;
import java.sql.RowId;
import java.sql.SQLXML;
*/
//#endif
/** /**
* This class is a simple result set and meta data implementation. * This class is a simple result set and meta data implementation.
* It can be used in Java functions that return a result set. * It can be used in Java functions that return a result set.
...@@ -1561,36 +1566,44 @@ public class SimpleResultSet implements ResultSet, ResultSetMetaData { ...@@ -1561,36 +1566,44 @@ public class SimpleResultSet implements ResultSet, ResultSetMetaData {
* INTERNAL * INTERNAL
*/ */
//#ifdef JDK16 //#ifdef JDK16
/*
public RowId getRowId(int columnIndex) throws SQLException { public RowId getRowId(int columnIndex) throws SQLException {
throw getUnsupportedException(); throw getUnsupportedException();
} }
*/
//#endif //#endif
/** /**
* INTERNAL * INTERNAL
*/ */
//#ifdef JDK16 //#ifdef JDK16
/*
public RowId getRowId(String columnName) throws SQLException { public RowId getRowId(String columnName) throws SQLException {
throw getUnsupportedException(); throw getUnsupportedException();
} }
*/
//#endif //#endif
/** /**
* INTERNAL * INTERNAL
*/ */
//#ifdef JDK16 //#ifdef JDK16
/*
public void updateRowId(int columnIndex, RowId x) throws SQLException { public void updateRowId(int columnIndex, RowId x) throws SQLException {
throw getUnsupportedException(); throw getUnsupportedException();
} }
*/
//#endif //#endif
/** /**
* INTERNAL * INTERNAL
*/ */
//#ifdef JDK16 //#ifdef JDK16
/*
public void updateRowId(String columnName, RowId x) throws SQLException { public void updateRowId(String columnName, RowId x) throws SQLException {
throw getUnsupportedException(); throw getUnsupportedException();
} }
*/
//#endif //#endif
/** /**
...@@ -1631,74 +1644,90 @@ public class SimpleResultSet implements ResultSet, ResultSetMetaData { ...@@ -1631,74 +1644,90 @@ public class SimpleResultSet implements ResultSet, ResultSetMetaData {
* INTERNAL * INTERNAL
*/ */
//#ifdef JDK16 //#ifdef JDK16
/*
public void updateNClob(int columnIndex, NClob nClob) throws SQLException { public void updateNClob(int columnIndex, NClob nClob) throws SQLException {
throw getUnsupportedException(); throw getUnsupportedException();
} }
*/
//#endif //#endif
/** /**
* INTERNAL * INTERNAL
*/ */
//#ifdef JDK16 //#ifdef JDK16
/*
public void updateNClob(String columnName, NClob nClob) throws SQLException { public void updateNClob(String columnName, NClob nClob) throws SQLException {
throw getUnsupportedException(); throw getUnsupportedException();
} }
*/
//#endif //#endif
/** /**
* INTERNAL * INTERNAL
*/ */
//#ifdef JDK16 //#ifdef JDK16
/*
public NClob getNClob(int columnIndex) throws SQLException { public NClob getNClob(int columnIndex) throws SQLException {
throw getUnsupportedException(); throw getUnsupportedException();
} }
*/
//#endif //#endif
/** /**
* INTERNAL * INTERNAL
*/ */
//#ifdef JDK16 //#ifdef JDK16
/*
public NClob getNClob(String columnName) throws SQLException { public NClob getNClob(String columnName) throws SQLException {
throw getUnsupportedException(); throw getUnsupportedException();
} }
*/
//#endif //#endif
/** /**
* INTERNAL * INTERNAL
*/ */
//#ifdef JDK16 //#ifdef JDK16
/*
public SQLXML getSQLXML(int columnIndex) throws SQLException { public SQLXML getSQLXML(int columnIndex) throws SQLException {
throw getUnsupportedException(); throw getUnsupportedException();
} }
*/
//#endif //#endif
/** /**
* INTERNAL * INTERNAL
*/ */
//#ifdef JDK16 //#ifdef JDK16
/*
public SQLXML getSQLXML(String columnName) throws SQLException { public SQLXML getSQLXML(String columnName) throws SQLException {
throw getUnsupportedException(); throw getUnsupportedException();
} }
*/
//#endif //#endif
/** /**
* INTERNAL * INTERNAL
*/ */
//#ifdef JDK16 //#ifdef JDK16
/*
public void updateSQLXML(int columnIndex, SQLXML xmlObject) public void updateSQLXML(int columnIndex, SQLXML xmlObject)
throws SQLException { throws SQLException {
throw getUnsupportedException(); throw getUnsupportedException();
} }
*/
//#endif //#endif
/** /**
* INTERNAL * INTERNAL
*/ */
//#ifdef JDK16 //#ifdef JDK16
/*
public void updateSQLXML(String columnName, SQLXML xmlObject) public void updateSQLXML(String columnName, SQLXML xmlObject)
throws SQLException { throws SQLException {
throw getUnsupportedException(); throw getUnsupportedException();
} }
*/
//#endif //#endif
/** /**
...@@ -1747,18 +1776,22 @@ public class SimpleResultSet implements ResultSet, ResultSetMetaData { ...@@ -1747,18 +1776,22 @@ public class SimpleResultSet implements ResultSet, ResultSetMetaData {
* INTERNAL * INTERNAL
*/ */
//#ifdef JDK16 //#ifdef JDK16
/*
public <T> T unwrap(Class<T> iface) throws SQLException { public <T> T unwrap(Class<T> iface) throws SQLException {
throw getUnsupportedException(); throw getUnsupportedException();
} }
*/
//#endif //#endif
/** /**
* INTERNAL * INTERNAL
*/ */
//#ifdef JDK16 //#ifdef JDK16
/*
public boolean isWrapperFor(Class<?> iface) throws SQLException { public boolean isWrapperFor(Class<?> iface) throws SQLException {
throw getUnsupportedException(); throw getUnsupportedException();
} }
*/
//#endif //#endif
/** /**
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论