jsp查询sqlserver数据库语句代码
时间: 2023-08-28 20:06:42 浏览: 128
jsp查询代码
5星 · 资源好评率100%
以下是一个简单的 JSP 查询 SQL Server 数据库的示例代码:
```jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ page import="java.sql.*" %>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>查询 SQL Server 数据库</title>
</head>
<body>
<h1>查询 SQL Server 数据库</h1>
<%
String driverName = "com.microsoft.sqlserver.jdbc.SQLServerDriver";
String dbURL = "jdbc:sqlserver://localhost:1433;databaseName=mydb";
String userName = "sa";
String userPwd = "password";
Connection conn = null;
PreparedStatement pstmt = null;
ResultSet rs = null;
try {
// 加载数据库驱动程序
Class.forName(driverName);
// 获取数据库连接
conn = DriverManager.getConnection(dbURL, userName, userPwd);
// 编写 SQL 查询语句
String sql = "SELECT * FROM goods";
// 创建 PreparedStatement 对象
pstmt = conn.prepareStatement(sql);
// 执行查询操作
rs = pstmt.executeQuery();
// 输出查询结果
out.println("<table border='1'>");
out.println("<tr><th>ID</th><th>Name</th><th>Price</th></tr>");
while (rs.next()) {
int id = rs.getInt("id");
String name = rs.getString("name");
double price = rs.getDouble("price");
out.println("<tr><td>" + id + "</td><td>" + name + "</td><td>" + price + "</td></tr>");
}
out.println("</table>");
} catch (Exception e) {
e.printStackTrace();
} finally {
// 释放资源
if (rs != null) {
try {
rs.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
if (pstmt != null) {
try {
pstmt.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
if (conn != null) {
try {
conn.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
}
%>
</body>
</html>
```
在上面的示例代码中,我们首先定义了连接 SQL Server 数据库所需的驱动程序、数据库 URL、用户名和密码等信息。然后,通过 `Class.forName()` 方法加载驱动程序,通过 `DriverManager.getConnection()` 方法获取数据库连接。接着,我们编写了一个简单的 SQL 查询语句,创建 PreparedStatment 对象,通过 `executeQuery()` 方法执行查询操作,并将查询结果输出到 HTML 页面上。最后,释放数据库资源。
阅读全文