无法在String
中存储大尺寸CLOB
String
包含xml数据。 String
的大小大于19000。
我能够存储小字符串但在数据库中获取null
值以获得大字符串。
请为此建议解决方案。
我使用以下代码:
Clob myClob = Hibernate.createClob(updateStr);
Reader reader = myClob.getCharacterStream();
myServiceRequest.setRequestData(Hibernate.createClob(reader, (int)myClob.length()));
updateStr
是一个包含xml数据的String,其大小非常大。我无法在数据库中插入。
RequestData是我插入String的数据库中的列(类型CLOB)。