<%@ page contentType= "text/html;charset=gb2312" %> |
<%@ page import = "java.sql.*" %> |
<html> |
<body> |
<% |
Class.forName( "com.ibm.db2.jdbc.app.DB2Driver " ).newInstance(); |
String url = "jdbc: db2://localhost:5000/sample" ; |
//sample为你的数据库名 |
String user = "admin" ; |
String password = "" ; |
Connection conn = DriverManager.getConnection(url, user, password); |
Statement stmt = conn |
.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE, |
ResultSet.CONCUR_UPDATABLE); |
String sql = "select * from test" ; |
ResultSet rs = stmt.executeQuery(sql); |
while (rs.next()) { |
%> |
您的第一个字段内容为:<%=rs.getString( 1 )%> |
您的第二个字段内容为:<%=rs.getString( 2 )%> |
<% |
} |
%> |
<% |
out.print( "数据库操作成功,恭喜你" ); |
%> |
<% |
rs.close(); |
stmt.close(); |
conn.close(); |
%> |
</body> |
</html> |
by: 发表于:2017-12-29 10:51:07 顶(0) | 踩(0) 回复
??
回复评论