使用AND函数问题更新Clob

时间:2015-01-10 18:46:43

标签: oracle sql-update nclob

我正在使用N函数在SQL Query中更新NClob。但是,使用N功能的更新不允许我更新超过1900个字符。删除N功能后。我能够将超过1900个字符更新到我的NClob列。

任何人都可以帮助我,为什么我无法使用N功能更新NClob列?对它有任何限制吗?

代码是

StringBuilder updateQuery = new StringBuilder(" update table_name set column_name ="); updateQuery.append(" = N'")。追加(NClobContent).append("'")。追加(",&#34 ); ps.execute(updateQuery.toString());

0 个答案:

没有答案