下面选项中,用于将参数化的SQL语句发送到数据库的方法是( )
A. prepareCall(String sql)
B. prepareStatement(String sql)
C. statement(String sql)
D. createStatement()
查看答案
以下关于statement的用法,错误的是( )
A. statement.execute(sql)
B. statement.executeUpdate(sql)
C. statement.executeQuery(sql)
D. statement.executeSQL(sql)
Statement提供的子接口_____可以实现SQL的预编译。(答案字母按规范区分大小写)
ResultSet接口中定义了大量的getXXX()方法,如果使用字段的索引来获取指定的数据,字段的索引是从_____开始的。
以执行“select * from student”为例,写出JDBC连接demo数据库的基本步骤,假设数据库账号root,密码123456