Friday 4 September 2015

What are the different types of JDBC Statements?

Types of statements are:
  • Statement (regular SQL statement)
  • PreparedStatement (more efficient than statement due to pre-compilation of SQL)
  • CallableStatement (to call stored procedures on the database)

No comments:

Post a Comment