📄 testpool.jsp
字号:
<html>
<%@page contentType="text/html;charset=gb2312"%>
<%@page import="java.sql.*"%>
<%@page import="javax.sql.*"%>
<%@page import="javax.naming.*"%>
<body>
this is a tomcat datasource pool example <br>
<%
InitialContext ctx=null;
Connection conn=null;
Statement stmt=null;
ResultSet rs=null;
DataSource ds = null;
try
{
ctx=new InitialContext();
if(ctx==null)throw new Exception("没有匹配的上下文环境");
ds=(DataSource)ctx.lookup("java:comp/env/jdbc/SqlServermidp");
if(ds==null)throw new Exception("没有匹配的数据库");
conn = ds.getConnection();
stmt = conn.createStatement();
String strSql = " select * from test";
rs = stmt.executeQuery(strSql);
while(rs.next())
{
out.println(rs.getString(1)); %><br>
<%
}
out.println("数据库连接成功!!!");
}
catch(Exception e)
{
out.println(e.toString());
}
finally
{
if(rs!=null)
rs.close();
if(stmt!=null)
stmt.close();
if(conn!=null)
conn.close();
if(ctx!=null)
ctx.close();
}
%>
</body>
</html>
蕃;貯X礯┶柆lA
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -