1 query.inc public QueryConditionInterface::compile(DatabaseConnection $connection, QueryPlaceholderInterface $queryPlaceholder)

Compiles the saved conditions for later retrieval.

This method does not return anything. It only prepares data to be retrieved via __toString() and arguments().

Parameters

$connection: The database connection for which to compile the conditionals.

$queryPlaceholder: The query this condition belongs to. If not given, the current query is used.

File

core/includes/database/query.inc, line 150
Non-specific Database query code. Used by all engines.

Class

QueryConditionInterface
Interface for a conditional clause in a query.

Code

public function compile(DatabaseConnection $connection, QueryPlaceholderInterface $queryPlaceholder);