java JDBC-數據庫的鏈接

public class Demo {

public static void main(String[] args) {
    try {
        //加載驅動類(jar包提供的類)
        Class.forName("com.mysql.jdbc.Driver");
        //鏈接數據庫
        Connection conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/test","root","dyl123");

        System.out.println(conn);

    } catch (ClassNotFoundException e) {
        e.printStackTrace();
    } catch (SQLException e) {
        e.printStackTrace();
    }
}
}
相關文章
相關標籤/搜索