package ms; //数据库的连接 import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; public class DataBaseConnection { Connection con = null; Statement sql = null; ResultSet rs = null; public DataBaseConnection() { // shujuku try { Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver"); // 加载驱动 } catch (ClassNotFoundException e) { System.out.println(e); } try { con = DriverManager.getConnection("jdbc:sqlserver://localhost:1433;DatabaseName=大学城校园美食联盟", "sa", "lch"); // 连接数据库 } catch (SQLException e) { System.out.println(e); } } // 查询 public ResultSet executeQuery(String sql_s) { try { sql = con.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_READ_ONLY); rs = sql.executeQuery(sql_s); } catch (SQLException e) { System.out.println(e); } return rs; } // 关闭数据库 public void close() { if (rs != null) { try { rs.close(); } catch (SQLException e) { // TODO Auto-generated catch block e.printStackTrace(); } } if (con != null) { try { con.close(); } catch (SQLException e) { // TODO Auto-generated catch block e.printStackTrace(); } } } }
最近下载更多
Demo1111 LV30
2021年12月12日
tiashishiwo LV5
2021年7月3日
fdsvsfds LV2
2021年3月16日
此刀名为秋水 LV1
2021年2月20日
freedom2017 LV14
2020年6月2日
狗比lc LV1
2020年1月2日
hanyuiqng LV9
2019年12月24日
啊浩啊 LV7
2019年9月19日
CJ6872400 LV1
2019年7月27日
mangen LV1
2019年6月25日
最近浏览更多
就爱吃饺子啊 LV1
10月21日
aaaaaaaaa4 LV1
9月19日
ZALZXB20030525
7月1日
暂无贡献等级
18306681497 LV1
6月27日
cx20031221
6月5日
暂无贡献等级
林灵123456 LV8
6月3日
2860615178 LV4
5月29日
R8sixsix LV1
2月27日
廖业贵 LV18
2月23日
adyxhss LV3
2023年12月25日