数据库常见操作代码(可直接复制粘贴修改提示内容)

   日期:2024-12-29    作者:czdytfhm4 浏览:53    移动:http://w.yusign.com/mobile/quote/8114.html
连接数据库代码 public class DatabaseConnect { private Connection conn; public DatabaseConnect() throws ClassNotFoundException, SQLException{ Class.forName("com.mysql.jdbc.Driver"); System.out.println("load ok"); String url = "jdbc:mysql://localhost:3306/MySQL?user=root&password;="; conn = DriverManager.getConnection(url); System.out.println("connect ok"); } public static void main(String[] args) { try { new DatabaseConnect(); } catch (ClassNotFoundException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (SQLException e) { // TODO Auto-generated catch block e.printStackTrace(); } } public ResultSet runQuery(String sql) throws SQLException { Statement statement = conn.createStatement(); ResultSet records = statement.executeQuery(sql); return records; } public void excuteQuery(String sql) throws SQLException { Statement statement = conn.createStatement(); statement.execute(sql); } public void close() throws SQLException{ conn.close(); }
本文地址:http://w.yusign.com/quote/8114.html    述古往 http://w.yusign.com/static/ , 查看更多

特别提示:本信息由相关用户自行提供,真实性未证实,仅供参考。请谨慎采用,风险自负。


举报收藏 0评论 0
0相关评论
相关行情
推荐行情
点击排行
{
网站首页  |  关于我们  |  联系方式  |  用户协议  |  隐私政策  |  版权声明  |  网站地图  |  排名推广  |  广告服务  |  积分换礼  |  网站留言  |  RSS订阅  |  违规举报  |  鄂ICP备2020018471号