abstract public function Connection::nextId

Same name in this branch
  1. 9.x drupal/core/lib/Drupal/Core/Database/Connection.php \Drupal\Core\Database\Connection::nextId()
  2. 9.x drupal/core/lib/Drupal/Core/Database/Driver/mysql/Connection.php \Drupal\Core\Database\Driver\mysql\Connection::nextId()
  3. 9.x drupal/core/lib/Drupal/Core/Database/Driver/sqlite/Connection.php \Drupal\Core\Database\Driver\sqlite\Connection::nextId()
  4. 9.x drupal/core/lib/Drupal/Core/Database/Driver/pgsql/Connection.php \Drupal\Core\Database\Driver\pgsql\Connection::nextId()

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: 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.

3 methods override Connection::nextId()
Connection::nextId in drupal/core/lib/Drupal/Core/Database/Driver/mysql/Connection.php
Retrieves an unique id from a given sequence.
Connection::nextId in drupal/core/lib/Drupal/Core/Database/Driver/sqlite/Connection.php
Retrieves an unique id from a given sequence.
Connection::nextId in drupal/core/lib/Drupal/Core/Database/Driver/pgsql/Connection.php
Retrive a the next id in a sequence.

File

drupal/core/lib/Drupal/Core/Database/Connection.php, line 1174
Definition of Drupal\Core\Database\Connection

Class

Connection
Base Database API class.

Namespace

Drupal\Core\Database

Code

public abstract function nextId($existing_id = 0);