初学jsp的网友经常会问数据库怎么连接啊,我集中的在这写篇文章供大家参考,
现在开始我们的jsp和数据库之旅吧!
●jsp连接mysql数据库
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为你的数据库名
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()) {%>
您的第一个字段内容为:<%=rs.getstring(1)%>
您的第二个字段内容为:<%=rs.getstring(2)%>
<%}%>
<%out.print(“数据库操作成功,恭喜你”);%>
<%rs.close();
stmt.close();
conn.close();
%>
</body>
</html>