我的QueryManager的选择功能:
/**
* Führt eine SELECT - Query durch
*
* @param $select = array( array(column, [...]), table, shortcut )
* $orderby = array(column, sorting-type)
* $where = array( array( column, value, type[or, and] ), [...] )
* $innerjoin = array( table, shortcut, condition )
* $pagination = array( page, limit )
*
* @return array $data
*/
public function select($select,$orderby, $where, $innerjoin, $pagination)
{
$qb = $this->conn->createQueryBuilder()
->select($select[0])
->from($select[1], $select[2])
;
if ($orderby) {
$qb->orderBy($orderby);
}
if ($where) {
foreach($where as $cond) {
$x = 0;
if ( key($cond) == 0 ) {
$qb
->where($cond[0] . ' = ?')
->setParameter($x,$cond[1]);
}
elseif ( $cond[2] == 'and' ) {
$qb
->andWhere($cond[0] . ' = ?')
->setParameter($x,$cond[1]);
}
elseif ( $cond[2] == 'and' ) {
$qb
->orWhere($cond[0] . ' = :' . $x)
->setParameter($x,$cond[1]);
}
$x++;
}
}
if ($innerjoin) {
$qb->join($select[2],$innerjoin);
}
$this->sql = $qb->getSQL();
$this->totalRowCount = count( $qb->execute() ) ;
if ($pagination) {
$max = $pagination[0] * $pagination[1];
$first = $max - $limit;
$qb
->setFirstResult($first)
->setMaxResults($max)
;
}
$stmt = $qb->execute();
return $stmt->fetchAll();
}
我不知道为什么,但在行动中,此函数会生成一个没有插入参数值的选择查询:
/**
* Lädt einen User nach dessen Username
*
* @param $username
* @return User $user | null
*/
public function getUser($username)
{
if($data = $this->select(array('*','users','u'), null, array( array('username',$username) ), null,null)) {
return $user = $this->hydrate($data);
}
return null;
}
我没有得到结果,并且查询设置不正确:
array(0) { }
SELECT * FROM users u WHERE username = ?
在我看来,Builder没有用提供的值来支持我的参数...
我得到了最新版本的Doctrine DBAL(2.4),这个版本应该支持这个功能!
感谢您的帮助和建议:)
答案 0 :(得分:1)
我也有这个问题。我在这里doctrine 2 querybuilder with set parameters not working表示:
您无法将参数绑定到QueryBuilder,只能绑定到Query
但我正在创建收集的SQL条件AND&深层嵌套对象中的OR表达式,最顶层的对象创建查询对象。所以我以前不能创建查询对象,我总是返回表达式对象。
所以我通过将变量直接包含在准备好的变量位置来解决问题。
$qb->where($cond[0] . '=' . $cond[1]);
因为我希望字符串在那里我添加了硬编码的引号。这不是理想的方式,但目前我不知道如何用 QueryBuilder 对象的绑定参数以其他方式解决这个问题。
$expr = $d_qb->expr()->between($t_c, "'" . $date_from . "'", "'" . $date_from . "'");
其他建议?
以下代码结果:
$expr = $d_qb->expr()->between($t_c, ':from', ':to');
$d_qb->setParameter('from', 1);
$d_qb->setParameter('to', 1);
或
$expr = $d_qb->expr()->between($t_c, ':from', ':to');
$d_qb->setParameter(':from', 1);
$d_qb->setParameter(':to', 1);
结果:
e0_.created BETWEEN ? AND ?