A.PrepareStatementB.StatementC.ResultSetD.Connection
多项选择题插入数据应该使用哪种语句格式?()
A.insert into table 表名values(...)B.insert into 表名(列1,...)values(值1,...)C.insert into 表名values(...)D.insert into table 表名(列1,...)values(值1,...)
多项选择题mysql注册驱动的方式有:()
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");
多项选择题JDBC获取数据库连接的方式:()
A.getConnection(String)B.getConnection(String url,String user,String password)C.getConnection(String url)D.getConnection(String url,Properties info)
多项选择题JDBC向数据库发送SQL的接口对象有哪些?()
A.StatementB.PreparedStatementC.CallableStatementD.Connection
单项选择题以下哪一项可以创建C3P0的数据库连接池对象?()
A.ComboPooledDataSourceB.ComboPooleDataSourceC.ComboDataSource aD.ComboPooledSource