本示例从sql2000的pubs数据库中的employee表取出first name、lname.
<%@ page contentType="text/html; charset=utf-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/sql" prefix="sql"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<html>
<head>
<title>jstl连接SQL Server 2000数据库</title>
</head>
<body>
<h3>本示例从sql2000的pubs数据库中的employee表取出first name、lname</h3>
当然,运行本JSP页须机器已经安装了SQL Server 2000数据库<br>
<sql:setDataSource driver="com.microsoft.jdbc.sqlserver.SQLServerDriver" url="jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=pubs" user="sa" password="pass"/>
<sql:query var="rs">
select * from employee
</sql:query>
<table border="1">
<tr align="center">
<td><strong>
first name</strong>
</td>
<td><strong>
last name
</strong></td>
</tr>
<c:forEach items="${rs.rows}" var="row">
<tr>
<td>
<c:out value="${row.fname}"></c:out>
</td>
<td>
<c:out value="${row.lname}"></c:out>
</td>
</tr>
</c:forEach>
</table>
<hr>
</body>
</html>
结果:
本示例从sql2000的pubs数据库中的employee表取出first name、lname
当然,运行本JSP页须机器已经安装了SQL Server 2000数据库
posted on 2007-10-24 21:15
jadmin 阅读(81)
评论(0) 编辑 收藏