在Java中,可以使用try-catch块来捕获数据库异常。以下是一个示例代码:
import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; public class DatabaseExample {public static void main(String[] args) {
Connection connection = null;
try {
// 获取数据库连接
connection = DriverManager.getConnection(“jdbc:mysql://localhost:3306/mydatabase”,
“username”, “password”);
// 执行数据库操作
} catch (SQLException e) {
// 处理数据库异常
e.printStackTrace();
} finally {
// 关闭数据库连接
try {
if (connection != null) {
connection.close();
}
} catch (SQLException e) {
e.printStackTrace();
}
}
} }
在上述代码中,我们通过DriverManager.getConnection
方法来获取数据库连接。如果连接过程中发生任何异常,会抛出SQLException
,然后在catch块中处理该异常。在finally块中,我们关闭数据库连接,以确保资源的正确释放。
注意,这只是一个基本的异常捕获示例。实际应用中,还应该根据具体的业务需求,对异常进行更详细的处理和日志记录。