数据库

位置:IT落伍者 >> 数据库 >> 浏览文章

c3po数据库连接池中取出连接


发布日期:2023年02月19日
 
c3po数据库连接池中取出连接
<! 使用连接池获得连接JNDI java name dri interface java命名目录接口 >

<! 获得连接 > <%

Context context = new InitialContext()

DataSource ds = (DataSource)contextlookup(java:/comp/env/jdbc/oracle

Connection conn = dsgetConnection()

PreparedStatement ps = connprepareStatement(select * from teleinfo

ResultSet rs = psexecuteQuery()

while(rsnext())

{

outprintln(rsgetString())

outprintln()

}

connclose() %>

在应用的

contextxml

中如下配置

<Context> …… ……<Resource name=jdbc/oracle auth=Container type=javaxsqlDataSource

maxActive=

maxIdle=

maxWait=

username=telecom

password=orcl

driverClassName=oraclejdbcdriverOracleDriver

url=jdbc:oracle:thin:@localhost::ORCL/> </Context>

上一篇:取前1w个数据不超过4秒

下一篇:控制对类内部数据或函数成员访问的类