Simplify query handling (refactoring)
--HG-- extra : rebase_source : 73fdae35a6a635d34f2a5a6016f5832705381681
This commit is contained in:
parent
c823715c83
commit
5ddfef59ad
10
book.php
10
book.php
|
@ -18,6 +18,8 @@ class Book extends Base {
|
||||||
const ALL_RECENT_BOOKS_ID = "calibre:recentbooks";
|
const ALL_RECENT_BOOKS_ID = "calibre:recentbooks";
|
||||||
const BOOK_COLUMNS = "books.id as id, books.title as title, text as comment, path, timestamp, pubdate, series_index, uuid, has_cover";
|
const BOOK_COLUMNS = "books.id as id, books.title as title, text as comment, path, timestamp, pubdate, series_index, uuid, has_cover";
|
||||||
|
|
||||||
|
const SQL_BOOKS_BY_FIRST_LETTER = "select {0} from books left outer join comments on book = books.id where upper (books.sort) like ?";
|
||||||
|
|
||||||
public $id;
|
public $id;
|
||||||
public $title;
|
public $title;
|
||||||
public $timestamp;
|
public $timestamp;
|
||||||
|
@ -364,9 +366,11 @@ order by substr (upper (sort), 1, 1)");
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function getBooksByStartingLetter($letter, $n) {
|
public static function getBooksByStartingLetter($letter, $n) {
|
||||||
list ($totalNumber, $result) = parent::executeQuery ('select {0}
|
return self::getEntryArray (self::SQL_BOOKS_BY_FIRST_LETTER, array ($letter . "%"), $n);
|
||||||
from books left outer join comments on book = books.id
|
}
|
||||||
where upper (books.sort) like ?', self::BOOK_COLUMNS, array ($letter . "%"), $n);
|
|
||||||
|
public static function getEntryArray ($query, $params, $n) {
|
||||||
|
list ($totalNumber, $result) = parent::executeQuery ($query, self::BOOK_COLUMNS, $params, $n);
|
||||||
$entryArray = array();
|
$entryArray = array();
|
||||||
while ($post = $result->fetchObject ())
|
while ($post = $result->fetchObject ())
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue