nextIdDelete example

$pdo->exec($sql);
    }

    return $pdo;
  }

  /** * {@inheritdoc} */
  public function __destruct() {
    if ($this->needsCleanup) {
      $this->nextIdDelete();
    }
    parent::__destruct();
  }

  public function queryRange($query$from$count, array $args = [], array $options = []) {
    return $this->query($query . ' LIMIT ' . (int) $from . ', ' . (int) $count$args$options);
  }

  /** * {@inheritdoc} */
  
Home | Imprint | This part of the site doesn't use cookies.