Use executeQuery as often as possible. re #49, #48

Этот коммит содержится в:
Sébastien Lucas 2014-05-03 17:52:08 +02:00
родитель 8d07e6d12f
Коммит 23fcc4d641
2 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -47,10 +47,10 @@ class Author extends Base {
}
public static function getAllAuthorsByFirstLetter() {
$result = parent::getDb ()->query('select substr (upper (sort), 1, 1) as title, count(*) as count
list (, $result) = parent::executeQuery ("select {0}
from authors
group by substr (upper (sort), 1, 1)
order by substr (upper (sort), 1, 1)');
order by substr (upper (sort), 1, 1)", "substr (upper (sort), 1, 1) as title, count(*) as count", "", array (), -1);
$entryArray = array();
while ($post = $result->fetchObject ())
{

Просмотреть файл

@ -539,10 +539,10 @@ where data.book = books.id and data.id = ?');
}
public static function getAllBooks() {
$result = parent::getDb ()->query("select substr (upper (sort), 1, 1) as title, count(*) as count
list (, $result) = parent::executeQuery ("select {0}
from books
group by substr (upper (sort), 1, 1)
order by substr (upper (sort), 1, 1)");
order by substr (upper (sort), 1, 1)", "substr (upper (sort), 1, 1) as title, count(*) as count", self::getFilterString (), array (), -1);
$entryArray = array();
while ($post = $result->fetchObject ())
{