function SelectQuery::getArguments

Overrides SelectQueryInterface::getArguments

1 call to SelectQuery::getArguments()
SelectQuery::execute in includes/database/select.inc
Runs the query against the database.

File

includes/database/select.inc, line 1231

Class

SelectQuery
Query builder for SELECT statements.

Code

public function getArguments(QueryPlaceholderInterface $queryPlaceholder = NULL) {
    if (!isset($queryPlaceholder)) {
        $queryPlaceholder = $this;
    }
    $this->compile($this->connection, $queryPlaceholder);
    return $this->arguments();
}

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