域名頻道

歡迎您來到域名頻道,開始互聯(lián)網(wǎng)之旅!

jsp連接mysql數(shù)據(jù)庫測試方法

作者:技術(shù)支持來源:域名頻道發(fā)布時間:2006-9-15 21:49:11瀏覽:
jsp連接MySQL數(shù)據(jù)庫
testmysql.jsp如下:
<%@ page contentType="text/html;charset=gb2312"%>
<%@ page import="java.sql.*"%>
<html>
<body>
<%Class.forName("org.gjt.mm.mysql.Driver").newInstance();
String url ="jdbc: mysql://localhost/softforum?user=soft&password=soft1234&useUnicode=true&characterEncoding=8859_1"
//testDB為你的數(shù)據(jù)庫名
Connection conn= DriverManager.getConnection(url);
Statement stmt=conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);
String sql="select * from test";
ResultSet rs=stmt.executeQuery(sql);
while(rs.next()) {%>
您的第一個字段內(nèi)容為:<%=rs.getString(1)%>
您的第二個字段內(nèi)容為:<%=rs.getString(2)%>
<%}%>
<%out.print("數(shù)據(jù)庫操作成功,恭喜你");%>
<%rs.close();
stmt.close();
conn.close();
%>
</body>
</html>
收藏 】 【 打印
會員 客服 QQ 電話 充值 工單
Top

24小時客服熱線

400-670-1116

021-67820741

若400電話正忙,請撥總機 02167820741