Java语言,MySQL数据库;基于SSM的流浪动物救助网站的设计与实现
由于提供的资源是一个完整的项目,并且涉及到的代码量较多,我无法提供整个项目的源代码。但我可以提供一个简化的示例,展示如何在Java中使用JDBC连接MySQL数据库。
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.SQLException;
public class DatabaseExample {
private static final String DB_URL = "jdbc:mysql://localhost:3306/your_database";
private static final String USER = "your_username";
private static final String PASS = "your_password";
public static void main(String[] args) {
// 连接数据库
try (Connection conn = DriverManager.getConnection(DB_URL, USER, PASS);
// 创建一个SQL语句
PreparedStatement pstmt = conn.prepareStatement("INSERT INTO your_table (column1, column2) VALUES (?, ?)")) {
// 设置参数
pstmt.setString(1, "value1");
pstmt.setInt(2, 123);
// 执行SQL语句
pstmt.executeUpdate();
System.out.println("Data inserted successfully");
} catch (SQLException e) {
System.out.println("SQLException: " + e.getMessage());
}
}
}
在这个例子中,我们使用了JDBC的DriverManager
来建立与MySQL数据库的连接,并使用PreparedStatement
来执行一个插入数据的SQL语句。这是一个典型的操作数据库的过程,在实际的项目中会经常用到。
请注意,为了保证安全性,不要在代码中直接包含数据库的URL、用户名和密码,最好通过配置文件或环境变量来管理这些敏感信息。
评论已关闭