提交 eb9fdb1a authored 作者: Thomas Mueller's avatar Thomas Mueller

--no commit message

--no commit message
上级 9be65fc9
......@@ -1298,7 +1298,7 @@ public class JdbcPreparedStatement extends JdbcStatement implements PreparedStat
/*## Java 1.6 begin ##
public void setNClob(int parameterIndex, NClob x) throws SQLException {
try {
if (debug()) {
if (isDebugEnabled()) {
debugCode("setNClob("+parameterIndex+", x);");
}
checkClosed();
......
......@@ -3144,7 +3144,7 @@ public class JdbcResultSet extends TraceObject implements ResultSet {
/*## Java 1.6 begin ##
public void updateNClob(int columnIndex, NClob x) throws SQLException {
try {
if (debug()) {
if (isDebugEnabled()) {
debugCode("updateNClob("+columnIndex+", x);");
}
throw Message.getUnsupportedException();
......@@ -3160,7 +3160,7 @@ public class JdbcResultSet extends TraceObject implements ResultSet {
/*## Java 1.6 begin ##
public void updateNClob(int columnIndex, Reader x) throws SQLException {
try {
if (debug()) {
if (isDebugEnabled()) {
debugCode("updateNClob("+columnIndex+", x);");
}
throw Message.getUnsupportedException();
......@@ -3177,7 +3177,7 @@ public class JdbcResultSet extends TraceObject implements ResultSet {
public void updateNClob(int columnIndex, Reader x, long length)
throws SQLException {
try {
if (debug()) {
if (isDebugEnabled()) {
debugCode("updateNClob("+columnIndex+", x, " + length + "L);");
}
throw Message.getUnsupportedException();
......@@ -3194,7 +3194,7 @@ public class JdbcResultSet extends TraceObject implements ResultSet {
public void updateNClob(String columnName, Reader x)
throws SQLException {
try {
if (debug()) {
if (isDebugEnabled()) {
debugCode("updateNClob("+quote(columnName)+", x);");
}
throw Message.getUnsupportedException();
......@@ -3211,7 +3211,7 @@ public class JdbcResultSet extends TraceObject implements ResultSet {
public void updateNClob(String columnName, Reader x, long length)
throws SQLException {
try {
if (debug()) {
if (isDebugEnabled()) {
debugCode("updateNClob("+quote(columnName)+", x, " + length+"L);");
}
throw Message.getUnsupportedException();
......@@ -3227,7 +3227,7 @@ public class JdbcResultSet extends TraceObject implements ResultSet {
/*## Java 1.6 begin ##
public void updateNClob(String columnName, NClob x) throws SQLException {
try {
if (debug()) {
if (isDebugEnabled()) {
debugCode("updateNClob("+quote(columnName)+", x);");
}
throw Message.getUnsupportedException();
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论