使用OraclePreparedStatement通过Tomcat 8.5.9从Java 8写入oracle 11.2数据库吗?

使用OraclePreparedStatement通过Tomcat 8.5.9从Java 8写入oracle 11.2数据库吗?,第1张

使用OraclePreparedStatement通过Tomcat 8.5.9从Java 8写入oracle 11.2数据库吗?

这可能不是最佳答案,但是通过反复试验,我发现我只需要在下面添加一行代码即可解开与OracleConnection的连接,并且一切正常。

...Connection tconn=null;OracleConnection conn=null;Context initCtx = new InitialContext(); Context envCtx = (Context) initCtx.lookup("java:comp/env");DataSource ds = (DataSource) envCtx.lookup("jdbc/myPool");tconn = ds.getConnection();// the following line is needed to unwrap to OracleConnectionconn= tconn.unwrap(OracleConnection.class);tconn.close();...

我敢肯定有一种替代的(也许更好)的方法来为OracleConnection配置Tomcat,但是我不确定该怎么做。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5427779.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-11
下一篇 2022-12-11

发表评论

登录后才能评论

评论列表(0条)

保存