修改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();
下列选项中,可得到 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");
execute,executeQuery,executeUpdate的区别是什么?
execute,executeQuery,executeUpdate的区别是什么?
executeUpdate()不是Statement接口的方法。()
executeUpdate()不是Statement接口的方法。()
智慧职教: PreparedStatement执行executeUpdate()方法返回值类型是( )。
智慧职教: PreparedStatement执行executeUpdate()方法返回值类型是( )。
Hibernate执行更新是方法是() A: executeQuery() B: executeUpdate()
Hibernate执行更新是方法是() A: executeQuery() B: executeUpdate()
下面关于executeUpdate(String sql)方法,说法正确的是
下面关于executeUpdate(String sql)方法,说法正确的是
接口Statement中定义的executeUpdate返回的类型是( )
接口Statement中定义的executeUpdate返回的类型是( )
执行Statement接口的executeUpdate()方法会返回一个ResultSet对象
执行Statement接口的executeUpdate()方法会返回一个ResultSet对象
5、在Connection中设置executeUpdate不要自动提交的代码是
5、在Connection中设置executeUpdate不要自动提交的代码是