JDBC - Statement, PreparedStatement, CallableStatement and caching

后端 未结 2 1180
滥情空心
滥情空心 2020-12-15 12:07

I am wondering what are the differences and when to use Statement, PreparedStatement, and CallableStatement.

What is the best

2条回答
  •  北海茫月
    2020-12-15 12:34

    Statement vs PreparedStatement

    1. Performance can be better with PreparedStatement but is database dependent.

    2. With PreparedStatement you avoid SQL injection. How does a PreparedStatement avoid or prevent SQL injection?

    3. Better type check with preparedStatement by setInt, setString where as statement you just keep appending to the main SQL.

    Similar Post:

    Difference between Statement and PreparedStatement

    CallableStatement - Java answer to access StoredProcedures across all databases.

    Similar post

    CallableStatement vs Statement

    With PreparedStatement and Callable you already have caching, also caching is a big topic in its own, you wouldn't like to do all of that instead look at ehcache

    You should almost always prefer PreparedStatement over Statement

    If you have to operate over StoredProcedure you have just one option CallableStatement.

提交回复
热议问题