Upsert::__toString

public Upsert::__toString()

Implements PHP magic __toString method to convert the query to a string.

The toString operation is how we compile a query object to a prepared statement.

Return value

string A prepared statement query string for this object.

Overrides Query::__toString

File

core/lib/Drupal/Core/Database/Driver/pgsql/Upsert.php, line 79

Class

Upsert
PostgreSQL implementation of \Drupal\Core\Database\Query\Upsert.

Namespace

Drupal\Core\Database\Driver\pgsql

Code

public function __toString() {
  // Nothing to do.
}
doc_Drupal
2016-10-29 09:51:34
Comments
Leave a Comment

Please login to continue.