| Versionen | |
|---|---|
| drupal7 | public DatabaseConnection_mysql::queryRange($query, array $args, $from, $count, array $options = array()) |
includes/
<?php
public function queryRange($query, array $args, $from, $count, array $options = array()) {
return $this->query($query . ' LIMIT ' . $from . ', ' . $count, $args, $options);
}
?>
Kommentare
Kommentar hinzufügen