Browse Source

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

master
Sébastien Lucas 10 years ago
parent
commit
23fcc4d641
2 changed files with 4 additions and 4 deletions
  1. +2
    -2
      author.php
  2. +2
    -2
      book.php

+ 2
- 2
author.php View File

@@ -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 ())
{


+ 2
- 2
book.php View File

@@ -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 ())
{


Loading…
Cancel
Save