提交 34ec789f authored 作者: Thomas Mueller's avatar Thomas Mueller

Prepare release.

上级 01125a63
...@@ -1442,7 +1442,8 @@ public class JdbcCallableStatement extends JdbcPreparedStatement implements Call ...@@ -1442,7 +1442,8 @@ public class JdbcCallableStatement extends JdbcPreparedStatement implements Call
* @throws SQLException if this object is closed * @throws SQLException if this object is closed
*/ */
//## Java 1.6 begin ## //## Java 1.6 begin ##
public void setNCharacterStream(String parameterName, Reader x) throws SQLException { public void setNCharacterStream(String parameterName, Reader x)
throws SQLException {
setNCharacterStream(getIndexForName(parameterName), x); setNCharacterStream(getIndexForName(parameterName), x);
} }
//## Java 1.6 end ## //## Java 1.6 end ##
...@@ -1457,7 +1458,8 @@ public class JdbcCallableStatement extends JdbcPreparedStatement implements Call ...@@ -1457,7 +1458,8 @@ public class JdbcCallableStatement extends JdbcPreparedStatement implements Call
* @throws SQLException if this object is closed * @throws SQLException if this object is closed
*/ */
//## Java 1.6 begin ## //## Java 1.6 begin ##
public void setNClob(String parameterName, Reader x) throws SQLException { public void setNClob(String parameterName, Reader x)
throws SQLException {
setNClob(getIndexForName(parameterName), x); setNClob(getIndexForName(parameterName), x);
} }
//## Java 1.6 end ## //## Java 1.6 end ##
...@@ -1466,7 +1468,8 @@ public class JdbcCallableStatement extends JdbcPreparedStatement implements Call ...@@ -1466,7 +1468,8 @@ public class JdbcCallableStatement extends JdbcPreparedStatement implements Call
* [Not supported] Sets the value of a parameter as a SQLXML object. * [Not supported] Sets the value of a parameter as a SQLXML object.
*/ */
//## Java 1.6 begin ## //## Java 1.6 begin ##
public void setSQLXML(String parameterName, SQLXML x) throws SQLException { public void setSQLXML(String parameterName, SQLXML x)
throws SQLException {
throw unsupported("SQLXML"); throw unsupported("SQLXML");
} }
//## Java 1.6 end ## //## Java 1.6 end ##
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论