我是靠谱客的博主 成就枕头,这篇文章主要介绍weblogic.jdbc.wrapper.Clob_oracle_sql_CLOB incompatible with oracle.sql.CLOB 解决方,现在分享给大家,希望可以做个参考。
Object ocontent = resMap.get("CONTENTS");
//weblogic 驱动问题
if("weblogic.jdbc.wrapper.Clob_oracle_sql_CLOB".equals(ocontent.getClass().getName())){
Method method = ocontent.getClass().getMethod("getVendorObj",new Class[]{});
resContents = (oracle.sql.CLOB)method.invoke(ocontent);
} else{
resContents = (CLOB) resMap.get("CONTENTS");
}
最后
以上就是成就枕头最近收集整理的关于weblogic.jdbc.wrapper.Clob_oracle_sql_CLOB incompatible with oracle.sql.CLOB 解决方的全部内容,更多相关weblogic.jdbc.wrapper.Clob_oracle_sql_CLOB内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复