1 select.inc | public SelectQuery::isPrepared() |
Indicates if preExecute() has already been called on that object.
Return value
bool: TRUE is this query has already been prepared, FALSE otherwise.
Overrides SelectQueryInterface::isPrepared
File
- core/
includes/ database/ select.inc, line 1560 - Contains classes and interfaces for Select queries.
Class
- SelectQuery
- Query builder for SELECT statements.
Code
public function isPrepared() {
return $this->prepared;
}