1、加载数据库驱动
2、建立数据库连接
3、创建Statement对象
4、设置查询超时时间
5、执行查询
6、处理结果集
7、关闭资源
以下是详细的代码示例:
import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; public class SQLQueryTimeoutExample { public static void main(String[] args) { // 1. 加载数据库驱动 try { Class.forName("com.mysql.jdbc.Driver"); } catch (ClassNotFoundException e) { e.printStackTrace(); } // 2. 建立数据库连接 String url = "jdbc:mysql://localhost:3306/test"; String user = "root"; String password = "password"; Connection connection = null; try { connection = DriverManager.getConnection(url, user, password); } catch (SQLException e) { e.printStackTrace(); } // 3. 创建Statement对象 Statement statement = null; try { statement = connection.createStatement(); } catch (SQLException e) { e.printStackTrace(); } // 4. 设置查询超时时间(单位:秒) int timeout = 5; // 设置超时时间为5秒 statement.setQueryTimeout(timeout); // 5. 执行查询 String sql = "SELECT * FROM users"; ResultSet resultSet = null; try { resultSet = statement.executeQuery(sql); } catch (SQLException e) { e.printStackTrace(); } // 6. 处理结果集 while (resultSet != null && resultSet.next()) { System.out.println("User ID: " + resultSet.getInt("id")); System.out.println("User Name: " + resultSet.getString("name")); } // 7. 关闭资源 try { if (resultSet != null) { resultSet.close(); } if (statement != null) { statement.close(); } if (connection != null) { connection.close(); } } catch (SQLException e) { e.printStackTrace(); } } }
在这个示例中,我们使用了MySQL数据库,首先加载了数据库驱动,然后建立了数据库连接,接着,我们创建了一个Statement对象,并设置了查询超时时间为5秒,我们执行了查询并处理了结果集。
原创文章,作者:未希,如若转载,请注明出处:https://www.kdun.com/ask/641305.html
本网站发布或转载的文章及图片均来自网络,其原创性以及文中表达的观点和判断不代表本网站。如有问题,请联系客服处理。
发表回复