| Versionen | |
|---|---|
| drupal7 | protected DatabaseConnection_sqlite::prepareQuery($query, $cache = TRUE) |
includes/
<?php
protected function prepareQuery($query, $cache = TRUE) {
// It makes no sense to use the static prepared statement cache here,
// because all the work in our implementation is done in
// DatabaseStatement_sqlite::execute() and cannot be cached.
return $this->prepare($this->prefixTables($query));
}
?>
Kommentare
Kommentar hinzufügen