public function Connection::nextId

public Connection::nextId($existing_id = 0)

Retrieves an unique ID from a given sequence.

Use this function if for some reason you can't use a serial field. For example, MySQL has no ways of reading of the current value of a sequence and PostgreSQL can not advance the sequence to be larger than a given value. Or sometimes you just need a unique integer.

Parameters

$existing_id: (optional) After a database import, it might be that the sequences table is behind, so by passing in the maximum existing ID, it can be assured that we never issue the same ID.

Return value

An integer number larger than any number returned by earlier calls and also larger than the $existing_id if one was passed in.

Overrides Connection::nextId

File

core/lib/Drupal/Core/Database/Driver/sqlite/Connection.php, line 380

Class

Connection
SQLite implementation of \Drupal\Core\Database\Connection.

Namespace

Drupal\Core\Database\Driver\sqlite

Code

public function nextId($existing_id = 0) {
  $this->startTransaction();
  // We can safely use literal queries here instead of the slower query
  // builder because if a given database breaks here then it can simply
  // override nextId. However, this is unlikely as we deal with short strings
  // and integers and no known databases require special handling for those
  // simple cases. If another transaction wants to write the same row, it will
  // wait until this transaction commits. Also, the return value needs to be
  // set to RETURN_AFFECTED as if it were a real update() query otherwise it
  // is not possible to get the row count properly.
  $affected = $this->query('UPDATE {sequences} SET value = GREATEST(value, :existing_id) + 1', array(
    ':existing_id' => $existing_id,
  ), array('return' => Database::RETURN_AFFECTED));
  if (!$affected) {
    $this->query('INSERT INTO {sequences} (value) VALUES (:existing_id + 1)', array(
      ':existing_id' => $existing_id,
    ));
  }
  // The transaction gets committed when the transaction object gets destroyed
  // because it gets out of scope.
  return $this->query('SELECT value FROM {sequences}')->fetchField();
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Database!Driver!sqlite!Connection.php/function/Connection::nextId/8.1.x