JDBC连接Mysql

来源:互联网 发布:求生之路2淘宝国区礼物 编辑:程序博客网 时间:2024/05/16 04:38

JDBC连接Mysql

原码:

    try {            Class.forName("com.mysql.jdbc.Driver");            String url = "jdbc:mysql://10.180.48.19:3306/hsp_db";            Properties info = new Properties();            info.setProperty("user", "root");            info.setProperty("password", "hillstone");            Connection conn = DriverManager.getConnection(url, info);            System.out.println(conn);        } catch (Exception e) {            // TODO Auto-generated catch block            e.printStackTrace();        }
0 0
原创粉丝点击