jsp 中 executeUpdate( ) 的功能。

2024-12-28 10:22:17
推荐回答(3个)
回答1:

executeUpdate( )执行数据库的更新操作,不是jsp中的函数。

回答2:

这是jdbc中的。也可以算是“jsp里的..功能”!
主要就是咱们进行增 insert into 、删 delete、改 update 的时候用这个函数或者说方法去操作执行sql语句。比如说
sql="delete from Table1 where userName=?";
PreparedStatement pstmt=conn.prepareStatement(sql);
pstmt.setString(1,"admin");
int flag=pstmt.executeUpdate();
这样就得到了咱们用sql操作数据库,对表Table1的更改记录数~
另外,executeQuery()方法是进行查询用的,select!!
亲,不知道我说明白没有!!

回答3:

二楼说的很详细啊