打一段Java连接mysql的代码,包含的数据有编号,书名,作者,出版社,数量
时间: 2024-03-24 14:40:41 浏览: 53
可以使用Java中的JDBC API来连接MySQL数据库,以下是一个简单的示例代码:
```java
import java.sql.*;
public class MySQLConnector {
// JDBC驱动名和数据库URL
static final String JDBC_DRIVER = "com.mysql.cj.jdbc.Driver";
static final String DB_URL = "jdbc:mysql://localhost:3306/mydatabase?useSSL=false&serverTimezone=UTC";
// 数据库用户名和密码
static final String USER = "root";
static final String PASS = "password";
public static void main(String[] args) {
Connection conn = null;
Statement stmt = null;
try {
// 注册JDBC驱动
Class.forName(JDBC_DRIVER);
// 打开连接
System.out.println("连接数据库...");
conn = DriverManager.getConnection(DB_URL, USER, PASS);
// 执行查询
System.out.println("实例化Statement对象...");
stmt = conn.createStatement();
String sql = "INSERT INTO books (id, name, author, publisher, quantity) VALUES (1, 'Java入门', '张三', '清华大学出版社', 100)";
stmt.executeUpdate(sql);
System.out.println("插入数据成功!");
// 关闭连接
stmt.close();
conn.close();
} catch (SQLException se) {
// 处理JDBC错误
se.printStackTrace();
} catch (Exception e) {
// 处理Class.forName错误
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("关闭数据库连接...");
}
}
}
```
在上面的代码中,我们向books表中插入了一条数据,包括id、name、author、publisher和quantity五个字段。你可以根据需要修改这些字段的值,并使用相应的SQL语句来实现你的业务逻辑。
阅读全文