我可以获得有关 DriverManager 类的更多技术信息吗?我知道它用于创建java和数据库之间的连接(在我的情况下,我使用MySQL创建一个数据库)。但是我的项目中是否应该将DriverManager创建为一个单独的类?
答案 0 :(得分:0)
当然可以,read it here。通常您不需要实现它,使用系统库中的类。
如果您对此课程非常感兴趣,请同时查看source code here。
答案 1 :(得分:0)
要了解课程,您可以查看API http://docs.oracle.com/javase/7/docs/api/java/sql/DriverManager.html
如果要查看源代码,可以使用Java反编译器(例如:http://java.decompiler.free.fr/?q=jdgui
答案 2 :(得分:0)
没有多少:
Class.forName("com.mysql.jdbc.Driver");
Connection conn = DriverManager.getConnection("jdbc:mysql://localhost/dbtest", "user", "password");
PreparedStatement pstmt = conn.prepareStatement("SELECT * FROM tbltest");
// Do things
// ...
pstmt.close();
conn.close();