if (supportsDelimitedIdentifiers == null) // not explicitly set
configureNamingUtil(metaData);
// Auto-detect generated keys retrieval support unless user specified it.
if (supportsGetGeneratedKeys == null) {
supportsGetGeneratedKeys = (isJDBC3) ? metaData.supportsGetGeneratedKeys() : false;
}
if (log.isInfoEnabled()) {
log.info(_loc.get("dict-info", new Object[] {
metaData.getDatabaseProductName(), getMajorVersion(), getMinorVersion(),
metaData.getDriverName(), metaData.getDriverVersion()}));