提交 056c7d4e authored 作者: Thomas Mueller's avatar Thomas Mueller

Avoid null pointer exceptions.

上级 0a1d5822
......@@ -214,6 +214,8 @@ public class JdbcClob extends TraceObject implements Clob
checkClosed();
if (pos != 1) {
throw DbException.getInvalidValueException("pos", pos);
} else if (str == null) {
throw DbException.getInvalidValueException("str", str);
}
value = conn.createClob(new StringReader(str), -1);
return str.length();
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论