本文整理匯總了PHP中Book::getDbName方法的典型用法代碼示例。如果您正苦於以下問題:PHP Book::getDbName方法的具體用法?PHP Book::getDbName怎麽用?PHP Book::getDbName使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Book
的用法示例。
在下文中一共展示了Book::getDbName方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: getLoadSql
public static function getLoadSql()
{
$tableName = Book::getTableName();
return '
SELECT
`' . $tableName . '`.*
, ' . implode("\n\t\t\t\t, ", CoughObject::getFieldAliases('Author', 'Author_Object', 'author')) . '
FROM
`' . Book::getDbName() . '`.`' . $tableName . '`
INNER JOIN `' . Author::getDbName() . '`.`' . Author::getTableName() . '` AS `author`
ON `' . $tableName . '`.`author_id` = `author`.`author_id`
';
}
示例2: getLoadSql
public static function getLoadSql()
{
$tableName = Book::getTableName();
return '
SELECT
`' . $tableName . '`.*
FROM
`' . Book::getDbName() . '`.`' . $tableName . '`
';
}
示例3: loadBook_Collection
public function loadBook_Collection()
{
// Always create the collection
$collection = new Book_Collection();
$this->setBook_Collection($collection);
// But only populate it if we have key ID
if ($this->hasKeyId()) {
$db = Book::getDb();
$tableName = Book::getTableName();
$sql = '
SELECT
`' . $tableName . '`.*
FROM
`' . Book::getDbName() . '`.`' . $tableName . '`
WHERE
`' . $tableName . '`.`author_id` = ' . $db->quote($this->getAuthorId()) . '
';
// Construct and populate the collection
$collection->loadBySql($sql);
foreach ($collection as $element) {
$element->setAuthor_Object($this);
}
}
}
示例4: loadBook2library_Collection
public function loadBook2library_Collection()
{
// Always create the collection
$collection = new Book2library_Collection();
$this->setBook2library_Collection($collection);
// But only populate it if we have key ID
if ($this->hasKeyId()) {
$db = Book2library::getDb();
$tableName = Book2library::getTableName();
$sql = '
SELECT
`' . $tableName . '`.*
, ' . implode("\n\t\t\t\t\t, ", CoughObject::getFieldAliases('Book', 'Book_Object', 'book')) . '
FROM
`' . Book2library::getDbName() . '`.`' . $tableName . '`
INNER JOIN `' . Book::getDbName() . '`.`' . Book::getTableName() . '` AS `book`
ON `' . $tableName . '`.`book_id` = `book`.`book_id`
WHERE
`' . $tableName . '`.`library_id` = ' . $db->quote($this->getLibraryId()) . '
';
// Construct and populate the collection
$collection->loadBySql($sql);
foreach ($collection as $element) {
$element->setLibrary_Object($this);
}
}
}
示例5: getLoadSql
public static function getLoadSql()
{
$tableName = Book2library::getTableName();
return '
SELECT
`' . $tableName . '`.*
, ' . implode("\n\t\t\t\t, ", CoughObject::getFieldAliases('Book', 'Book_Object', 'book')) . '
, ' . implode("\n\t\t\t\t, ", CoughObject::getFieldAliases('Library', 'Library_Object', 'library')) . '
FROM
`' . Book2library::getDbName() . '`.`' . $tableName . '`
INNER JOIN `' . Book::getDbName() . '`.`' . Book::getTableName() . '` AS `book`
ON `' . $tableName . '`.`book_id` = `book`.`book_id`
INNER JOIN `' . Library::getDbName() . '`.`' . Library::getTableName() . '` AS `library`
ON `' . $tableName . '`.`library_id` = `library`.`library_id`
';
}