public class JDBCUtils { private static Connection connection; static { try { Properties properties = new Properties(); properties.load(new FileReader("src\\mysql.properties")); String url = properties.getProperty("url"); String user = properties.getProperty("user"); String pwd = properties.getProperty("pwd"); connection = DriverManager.getConnection(url, user, pwd); } catch (IOException e) { e.printStackTrace(); } catch (SQLException e) { e.printStackTrace(); } } public static Connection getConnection(){ return connection; } public static boolean Close(ResultSet resultSet, PreparedStatement statement,Connection connection){ try { if(resultSet != null){ resultSet.close(); } if(statement!=null){ statement.close(); } if(connection!=null){ connection.close(); } } catch (SQLException e) { e.printStackTrace(); } return true; } }
注意:静态方法只能使用静态属性,但是普通方法既能使用静态属性,又能使用非静态属性。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/98946.html