Few questions on JDBC coding:
- For a single client application, do we need a Connection pool?
- Is it a good idea to create a
Connection
at the beginning and keep it alive without close it until application exit? Why? PreparedStatement
is associated withConnection
, if my connection is not closed after each query, why not keep thePreparedStatement
alive and reuse it in other methods?- if we create
PreparedStatement
each query, does the database knows it is the samePreparedStatement
and ignore unnecessary actions after the first time? PreparedStatement
is not create once and reuse many times statement? If yes, why need to close it each time?
I know the call to close()
will release the resource. But If we know we are going to use it later, why release it and then request it again later?
How about a multi-client application? We need a connection pool and so we need to create and close Connection, Statement
, and PreparedStatement
each time?