A.使用PreparedStatement预处理对象执行sql语句B.不使用数据库存放客户的信息C.SQL可以方便用户,无需解决D.使用Statement预处理对象执行SQL语句
单项选择题下列哪一项是repeatable read存在的问题?()
A.虚读B.不可重复读、虚读C.脏读、不可重复读、虚读D.以上三个中都不存在
单项选择题QueryRunner的构造器正确的是()。
A.QueryRunner(dataSource)B.QueryRunner(Connection)C.QueryRunner(Statement)D.QueryRunner(ResultSet)
单项选择题下面关于Statement描述正确的是什么?()
A.PreparedStatement继承自StatementB.Statement继承自PreparedStatementC.ResultSet继承自StatementD.CallableStatement继承自PreparedStatement
单项选择题以下不属于并发访问出现的问题的是()。
A.脏读B.不可重复读C.虚读/幻读D.可重复读
单项选择题以下哪个是JDBC中事务控制的方式?()
A.conn.setAutoCommit(false)B.new QueryRunner()C.update(conn,sql ,params)D.DbUtils.commitAndClose(conn)