背景 oracle字段类型varchar2最大长度4000,超过的怎么办 解决 使用clob类型,大字段,无长度限制 问题 使用Java的JDBC读取的RS获取的clob类型无法正常使用,封装的rs.getObject()。字段内容确定是字符串,那么怎么正常读取字符串?还不改变封装的数据获取方法? ...
分类:
编程语言 时间:
2018-05-03 20:00:21
阅读次数:
206
/**
* 将Clob对象转换成String对象
* @param clob
* @return
* @throws SQLException
* @throws IOException
*/
public static String ClobToString(Clob clob) throws SQLException, IOException{
String st...
分类:
其他好文 时间:
2015-04-16 19:55:03
阅读次数:
132