使用JDBC模式:查询数据库t_student中的全部数据,并展示。
时间: 2024-02-09 16:12:27 浏览: 81
好的,以下是使用JDBC模式查询数据库t_student中的全部数据并展示的Java代码示例:
```java
import java.sql.*;
public class Main {
static final String JDBC_DRIVER = "com.mysql.jdbc.Driver";
static final String DB_URL = "jdbc:mysql://localhost:3306/test";
static final String USER = "root";
static final String PASS = "password";
public static void main(String[] args) {
Connection conn = null;
Statement stmt = null;
try {
Class.forName(JDBC_DRIVER);
System.out.println("Connecting to database...");
conn = DriverManager.getConnection(DB_URL,USER,PASS);
System.out.println("Creating statement...");
stmt = conn.createStatement();
String sql;
sql = "SELECT * FROM t_student";
ResultSet rs = stmt.executeQuery(sql);
while(rs.next()){
int id = rs.getInt("id");
String name = rs.getString("name");
int age = rs.getInt("age");
System.out.print("ID: " + id);
System.out.print(", Name: " + name);
System.out.println(", Age: " + age);
}
rs.close();
stmt.close();
conn.close();
} catch (SQLException se) {
se.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
} finally {
try {
if(stmt!=null)
stmt.close();
} catch (SQLException se2) {
}
try {
if(conn!=null)
conn.close();
} catch (SQLException se) {
se.printStackTrace();
}
}
System.out.println("Goodbye!");
}
}
```
请注意替换`DB_URL`,`USER`和`PASS`变量以匹配您的MySQL数据库连接设置。
这个程序将连接到MySQL数据库并执行一个SELECT语句来检索`t_student`表中的所有数据。然后,它将遍历结果集并打印每一行的ID,姓名和年龄。最后,它将关闭结果集,语句和连接。
希望这可以帮助到你!
阅读全文