RAW SQL Query with Zend Framework

前端 未结 4 1941
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-08 11:04

Is there a way to execute a SQL String as a query in Zend Framework?

I have a string like that:

$sql = \"SELECT * FROM testTable WHERE myColumn = 5\"         


        
4条回答
  •  我在风中等你
    2020-12-08 11:46

    If you're creating a Zend_DB object at the start you can create a query using that. Have a look at this entry in the manual : https://framework.zend.com/manual/1.12/en/zend.db.statement.html

    $stmt = $db->query(
                'SELECT * FROM bugs WHERE reported_by = ? AND bug_status = ?',
                array('goofy', 'FIXED')
            );
    

    Or

    $sql = 'SELECT * FROM bugs WHERE reported_by = ? AND bug_status = ?';
    $stmt = new Zend_Db_Statement_Mysqli($db, $sql);
    

提交回复
热议问题