本文整理汇总了PHP中PDO::createExpression方法的典型用法代码示例。如果您正苦于以下问题:PHP PDO::createExpression方法的具体用法?PHP PDO::createExpression怎么用?PHP PDO::createExpression使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PDO
的用法示例。
在下文中一共展示了PDO::createExpression方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: createExpression
/**
* @return ezcQueryExpression
*/
protected function createExpression()
{
if ($this->db instanceof ezcDbInterface) {
$expr = $this->db->createExpression($this->db);
} else {
$driver = $this->db->getAttribute(PDO::ATTR_DRIVER_NAME);
$className = 'ezcQueryExpression';
if ($driver !== 'mysql') {
$className .= strtoupper(substr($impName, 0, 1)) . substr($impName, 1);
}
$expr = new $className($this->db);
}
return $expr;
}
示例2: __construct
/**
* Constructs a new ezcQuery that works on the database $db and with the aliases $aliases.
*
* The aliases can be used to substitute the column and table names with more
* friendly names. E.g PersistentObject uses it to allow using property and class
* names instead of column and table names.
*
* @param PDO $db
* @param array(string=>string) $aliases
*/
public function __construct(PDO $db, array $aliases = array())
{
$this->db = $db;
if ($this->expr == null) {
$this->expr = $db->createExpression();
}
if (!empty($aliases)) {
$this->aliases = $aliases;
$this->expr->setAliases($this->aliases);
}
}