My {@link #prepareStatement} methods, rather than creating a new {@link PreparedStatement}each time, may actually pull the {@link PreparedStatement} from a pool of unused statements.The {@link PreparedStatement#close} method of the returned {@link PreparedStatement} doesn'tactually close the statement, but rather returns it to my pool. (See {@link PoolablePreparedStatement}.) @see PoolablePreparedStatement @author Rodney Waldhoff (rwaldhof@us.britannica.com)
|
|