The {@link #prepareStatement} and {@link #prepareCall} methods, rather thancreating a new PreparedStatement each time, may actually pull the statement from a pool of unused statements. The {@link PreparedStatement#close} method of the returned statement doesn'tactually close the statement, but rather returns it to the pool. (See {@link PoolablePreparedStatement}, {@link PoolableCallableStatement}.) @see PoolablePreparedStatement @author Rodney Waldhoff @author Dirk Verbeeck @since 2.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|