42 lines
1018 B
PHP
42 lines
1018 B
PHP
<?php
|
|
/**
|
|
* System - PHP Framework
|
|
*
|
|
* PHP Version 5.6
|
|
*
|
|
* @copyright 2016 Ulf Gebhardt (http://www.webcraft-media.de)
|
|
* @license http://www.opensource.org/licenses/mit-license.php MIT
|
|
* @link https://github.com/webcraftmedia/system
|
|
* @package SYSTEM\SQL
|
|
*/
|
|
namespace SYSTEM\SQL;
|
|
|
|
/**
|
|
* QQ to get a text by id and language
|
|
*/
|
|
class SYS_TEXT_GET_ID extends \SYSTEM\DB\QP {
|
|
/**
|
|
* Get Classname of the QQ
|
|
*
|
|
* @return string Returns classname
|
|
*/
|
|
public static function get_class(){return \get_class($this);}
|
|
|
|
/**
|
|
* Get QQs PostgreSQL Query String
|
|
*
|
|
* @return string Returns PostgreSQL Query String
|
|
*/
|
|
public static function pgsql(){return
|
|
'SELECT id,text FROM system.text WHERE id = $1 and lang = $2;';
|
|
}
|
|
|
|
/**
|
|
* Get QQs MYSQL Query String
|
|
*
|
|
* @return string Returns MYSQL Query String
|
|
*/
|
|
public static function mysql(){return
|
|
'SELECT id,text FROM system_text WHERE id = ? and lang = ?;';
|
|
}
|
|
} |