• 2022-06-14
    Statement对象用于将SQL语句发送到数据库中,在JDBCAPI中通常有三种Statement对象,下列说法中哪一项是错误的
    A: Statement对象用于无参数的查询。
    B: PreparedStatement对象用于带参数的查询。
    C: CallableStatement对象用于调用存储过程。
    D: Statement对象通常是在Connection对象中利用executeQuery()方法创建