Difference between executeupdate() and executequery()
Answers
Answered by
0
Difference between execute, executeQuery and executeUpdate in JDBC. execute method can be used with any type of SQL statements and it returns a boolean. ... executeQuery method execute statements that returns a result set by fetching some data from the database. It executes only select statements.
Similar questions