下列选项中,可得到 PreparedStatement对象的是( ) A: PreparedStatement pstmt =connection.createStatement(); B: PreparedStatement pstmt =connection.prepareStatement(sql); C: PreparedStatement pstmt =connection.prepareStatement(); D: PreparedStatement pstmt = connection.createStatement("sql");
下列选项中,可得到 PreparedStatement对象的是( ) A: PreparedStatement pstmt =connection.createStatement(); B: PreparedStatement pstmt =connection.prepareStatement(sql); C: PreparedStatement pstmt =connection.prepareStatement(); D: PreparedStatement pstmt = connection.createStatement("sql");
修改id为3的学生成绩为100,其中id为bigint类型 String sql="update student set math=100 where id=?"; PreparedStatement pstmt=con.prepareStatement(sql); 下列语句正确的是() A: pstmt.setLong(1,3); pstmt.executeUpdate(); B: pstmt.setInt(1,3); pstmt.executeUpdate(); C: pstmt.setLong(1,3L); pstmt.executeQuery(); D: pstmt.setLong(1,3L); pstmt.executeUpdate();
修改id为3的学生成绩为100,其中id为bigint类型 String sql="update student set math=100 where id=?"; PreparedStatement pstmt=con.prepareStatement(sql); 下列语句正确的是() A: pstmt.setLong(1,3); pstmt.executeUpdate(); B: pstmt.setInt(1,3); pstmt.executeUpdate(); C: pstmt.setLong(1,3L); pstmt.executeQuery(); D: pstmt.setLong(1,3L); pstmt.executeUpdate();
execute,executeQuery,executeUpdate的区别是什么?
execute,executeQuery,executeUpdate的区别是什么?
executeQuery用于执行查询数据库的操作。
executeQuery用于执行查询数据库的操作。
Statement接口中executeQuery()方法的返回值是
Statement接口中executeQuery()方法的返回值是
executeQuery(String sql)方法可以执行delete语句
executeQuery(String sql)方法可以执行delete语句
Statement类的executeQuery()方法返回的数据类型是( )
Statement类的executeQuery()方法返回的数据类型是( )
Hibernate执行更新是方法是() A: executeQuery() B: executeUpdate()
Hibernate执行更新是方法是() A: executeQuery() B: executeUpdate()
下面关于executeQuery(String sql)方法,说法正确的是(
下面关于executeQuery(String sql)方法,说法正确的是(
Statement对象的两个常用方法是execute()和executeQuery()。()
Statement对象的两个常用方法是execute()和executeQuery()。()