多项选择题
插入数据应该使用哪种语句格式?()
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.Statement
B.PreparedStatement
C.CallableStatement
D.Connection
