我的数据库中又两个字段其中一个是clob类型的!
在jsp页面中怎样才能读取clob字段的内容?
try{
String sql = “select * from tp_file where id = '1'”
ResultSet rs = stmt.executeQuery(sql);
whlie(rs.next())
{//这里怎么能得到clob字段的内容?
}
}
catch(Exception e)
{}