读书人

JAVA 中的SQL实施方法

发布时间: 2012-11-17 11:14:15 作者: rapoo

JAVA 中的SQL执行方法
来源:http://www.coderanch.com/t/301594/JDBC/java/Difference-between-execute-executeQuery-executeUpdate

boolean execute()Executes the SQL statement in this PreparedStatement object, which may be any kind of SQL statement.ResultSet executeQuery()Executes the SQL query in this PreparedStatement object and returns the ResultSet object generated by the query.int executeUpdate()Executes the SQL statement in this PreparedStatement object, which must be an SQL INSERT, UPDATE or DELETE statement; or an SQL statement that returns nothing, such as a DDL statement.

读书人网 >SQL Server

热点推荐