当前位置: 技术问答>java相关
我要向oracle中插入大文本,用的是lang类型的字段,但是只能插3000字,再多就抱错,说我字符串过长。谁遇到过此问题?
来源: 互联网 发布时间:2015-05-17
本文导语: 谢 | 当超过四千字时 要用流式输入 以下是写long的代码 希望能帮下忙 String sSql=""update test set content = ? where id = 1"; String content="my god";//你的内容 PreparedStatement stmt = conn.prepareStatement(sSql); byte[] p...
谢
|
当超过四千字时
要用流式输入
以下是写long的代码
希望能帮下忙
String sSql=""update test set content = ? where id = 1";
String content="my god";//你的内容
PreparedStatement stmt = conn.prepareStatement(sSql);
byte[] pic = content.getBytes();
InputStreamReader bais = new InputStreamReader(new ByteArrayInputStream(pic));
stmt.setCharacterStream(1, bais, pic.length);
stmt.execute();
自己改一下就能用
要用流式输入
以下是写long的代码
希望能帮下忙
String sSql=""update test set content = ? where id = 1";
String content="my god";//你的内容
PreparedStatement stmt = conn.prepareStatement(sSql);
byte[] pic = content.getBytes();
InputStreamReader bais = new InputStreamReader(new ByteArrayInputStream(pic));
stmt.setCharacterStream(1, bais, pic.length);
stmt.execute();
自己改一下就能用
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。