// handle lock timeout...
LockOptions lockOptions = queryParameters.getLockOptions();
if ( lockOptions != null ) {
if ( lockOptions.getTimeOut() != LockOptions.WAIT_FOREVER ) {
if (!dialect.supportsLockTimeouts()) LOG.debugf("Lock timeout [%s] requested but dialect reported to not support lock timeouts",
lockOptions.getTimeOut());
else if (dialect.isLockTimeoutParameterized()) st.setInt(col++, lockOptions.getTimeOut());
}
}