当前位置: 技术问答>java相关
WebLogic的DemoPool
来源: 互联网 发布时间:2015-01-07
本文导语: 环境:Weblogic 5.1.0+ Oracle 8.1.6 当使用Weblogic DemoPool时,使用oracle提供的thin Driver,在程序中,不能创建 stmt=conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_READ_ONLY); 不能执行。 但我直接调用Thin...
环境:Weblogic 5.1.0+ Oracle 8.1.6
当使用Weblogic DemoPool时,使用oracle提供的thin Driver,在程序中,不能创建
stmt=conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_READ_ONLY);
不能执行。
但我直接调用Thin Driver,conn=DriverManager.getConnection();
stmt=conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_READ_ONLY);
则没有问题。
当使用Weblogic DemoPool时,使用oracle提供的thin Driver,在程序中,不能创建
stmt=conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_READ_ONLY);
不能执行。
但我直接调用Thin Driver,conn=DriverManager.getConnection();
stmt=conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_READ_ONLY);
则没有问题。
|
1.在配置文件中,加入下面的配置语句
# Add a TXDataSource for the connection pool:
weblogic.jdbc.TXDataSource.weblogic.jdbc.jts.demoPool=demoPool
#Add an ACL for the connection pool:
weblogic.allow.reserve.weblogic.jdbc.connectionPool.demoPool=everyone
2.通过初始化JNDI上下文
InitialContext ic = new InitialContext();
DataSource ds = (DataSource)ic.lookup("DemoPool");
con = ds.getConnection();
# Add a TXDataSource for the connection pool:
weblogic.jdbc.TXDataSource.weblogic.jdbc.jts.demoPool=demoPool
#Add an ACL for the connection pool:
weblogic.allow.reserve.weblogic.jdbc.connectionPool.demoPool=everyone
2.通过初始化JNDI上下文
InitialContext ic = new InitialContext();
DataSource ds = (DataSource)ic.lookup("DemoPool");
con = ds.getConnection();
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。