在Statement接口中,能够执行给定的SQL语句并且可能返回多个结果的方法是()
A: execute方法
B: executeQuery方法
C: executeUpdate方法
D: getMaxRows方法
A: execute方法
B: executeQuery方法
C: executeUpdate方法
D: getMaxRows方法
举一反三
- 在Statement接口中,能够执行给定的SQL语句并且可能返回多个结果的方法是executeQuery方法。
- 在Statement接口中,能够执行给定的SQL语句并且可能返回多个结果的方法是( )
- 在JDBC应用程序中,使用Statement接口的()方法,执行查询语句,返回结果。 A: execute B: close C: executeUpdate D: executeQuery
- Statement接口中,以下哪个方法通常用来执行SQL中的查询语句? A: executeSelect() B: executeUpdate() C: execute() D: executeQuery()
- (4-3)关于Statement接口的常用方法,下列哪个说法不正确?() A: 方法execute用于执行返回多个结果集、多个更新计算或者两者组合的语句 B: 方法executeQuery产生单个结果集ResultSet对象 C: 方法executeUpdate用于执行DML语句,如insert,delete或者update,也可以执行DDL语句 D: executeQuery和execute都返回单个结果集ResultSet对象