JDBC:类加载方式注册驱动

常用的JDBC连接方式:类加载的方式注册驱动。

 public static void main(String[] args) {
        try {
            Class.forName("com.mysql.jdbc.Driver");
            Connection conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/lianxi", "root", "*******");
            System.out.println("连接成功:" + conn);
        } catch (SQLException e) {
            e.printStackTrace();
        } catch (ClassNotFoundException e) {
            e.printStackTrace();
        }
    }

你可能感兴趣的:(JDBC:类加载方式注册驱动)