熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> JSP教程 >> 正文

JSP如何連接MYSQL數據庫代碼示例

2022-06-13   來源: JSP教程 

  ●jsp連接MySQL數據庫 
testmysqljsp如下 
<%@ page contentType="text/html;charset=gb"%> 
<%@ page import="javasql*"%> 
<html> 
<body> 
<%ClassforName("orggjtmmmysqlDriver")newInstance(); 
String url ="jdbc:mysql://localhost/softforum?user=soft&password=soft&useUnicode=true&characterEncoding=_
//testDB為你的數據庫名 
Connection conn= DriverManagergetConnection(url); 
Statement stmt=conncreateStatement(ResultSetTYPE_SCROLL_SENSITIVEResultSetCONCUR_UPDATABLE); 
String sql="select * from test"; 
ResultSet rs=stmtexecuteQuery(sql); 
while(rsnext()) {%> 
您的第一個字段內容為<%=rsgetString()%> 
您的第二個字段內容為<%=rsgetString()%> 
<%}%> 
<%outprint("數據庫操作成功恭喜你");%> 
<%rsclose(); 
stmtclose(); 
connclose(); 
%> 
</body> 
</html> 


From:http://tw.wingwit.com/Article/program/Java/JSP/201311/19881.html
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.