Error message

You are browsing documentation for drupal 7.x, which is not supported anymore. Read the updated version of this page for drupal 11.x (the latest version).

function SelectQueryExtender::__clone

Clone magic method.

Select queries have dependent objects that must be deep-cloned. The connection object itself, however, should not be cloned as that would duplicate the connection itself.

Overrides SelectQueryInterface::__clone

File

includes/database/select.inc, line 823

Class

SelectQueryExtender
The base extender class for Select queries.

Code

public function __clone() {
 $this->uniqueIdentifier  = uniqid ('', TRUE);
 // We need to deep-clone the query we're wrapping, which in turn may
 // deep-clone other objects. Exciting!
 $this->query  = clone $this->query ;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.