多项选择题
A.Class.forName("com.mysql.jdbc.Driver");B.DriverManager.registerDriver(new com.mysql.jdbc.Driver());C.DriverManager.forname("com.mysql.jdbc.Driver ");D.System.setProperty("jdbc.drivers","com.mysql.jdbc.Driver");
A.getConnection(String)B.getConnection(String url,String user,String password)C.getConnection(String url)D.getConnection(String url,Properties info)
A.StatementB.PreparedStatementC.CallableStatementD.Connection