Moderate

Which method is used to perform DML statements in JDBC ?

Correct answer: A. executeUpdate()

  • A. executeUpdate()
  • B. executeQuery()
  • C. execute()
  • D. None of above

Explanation

JDBC's executeUpdate() is conventionally used for DML operations such as INSERT, UPDATE, and DELETE, and it returns the affected-row count. executeQuery() is intended for result-producing SELECT statements, although the more general execute() can also run SQL.

Last updated

Practise Database Systems

49 free Database Systems MCQs from Software Engineering, each with the correct answer and an explanation. Unlimited attempts, no account needed.

Exams that ask Software Engineering questions like this

Software Engineering is on this paper prepared for on TestUstad, and all of them draw the same bank, so this question is worth knowing for it.

Related questions