Posted on 2007-12-07 21:29
yukui 阅读(172)
评论(0) 编辑 收藏 所属分类:
技术
jsp连接sql server7.0/2000数据库
testsqlserver.jsp如下:
<%@ page contenttype='text/html;charset=gb2312'%>
<%@ page import='java.sql.*'%>
<html>
<body>
<%class.forname('com.microsoft.jdbc.sqlserver.sqlserverdriver').newinstance();
string url='jdbc:microsoft:sqlserver://localhost:1433;databasename=pubs';
//pubs为你的数据库的
string user='sa';
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>