/**
  * {@link PreparedStatement}をカスタマイズします。
  *
  * @param ps
  */
 protected void configurePreparedStatement(PreparedStatement ps) {
   if (fetchSize != null) {
     StatementUtil.setFetchSize(ps, fetchSize.intValue());
   }
   if (maxRows != null) {
     StatementUtil.setMaxRows(ps, maxRows.intValue());
   }
   if (queryTimeout != null) {
     StatementUtil.setQueryTimeout(ps, queryTimeout.intValue());
   }
 }