A.返回查询结果集B.获得数据库连接C.注册驱动D.预编译SQL语句
多项选择题对于数据库的查询操作,需要释放掉的数据库连接对象有哪些?()
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