zend-db-select
extending zend db select
I am building a CMS kind of site, There will be lot of admin users. ACL was in place for business layer. But now we want to apply custom ACL logic to models based on city in which admin user belongs.[详细]
2023-04-05 18:36 分类:问答Zend_Db_Select won't allow column values from joined tables
I am having a problem getting Zend_Db_Select to give me column values from joined tables. For example, this join works:[详细]
2023-03-27 16:42 分类:问答Zend_Db_Select LIKE clause
How can I set this query SELECT city_id FROM cities WHERE city开发者_运维百科_name LIKE \"%Vicenza%\"[详细]
2023-03-27 05:43 分类:问答How to inspect every query going to DB from Zend Framework
I have a complex reporting application that allows clients to login and view reports for their client data. There are several sections of the application where there are database calls, using various[详细]
2023-03-24 01:14 分类:问答stuck with zend_db_table + join
trying to understand of using Zend_Db_Table. i have a such table: then i created classes: class table_1 extends Zend_Db_Table_Abstract[详细]
2023-03-23 03:53 分类:问答How to use GROUP_CONCAT with Zend Framework?
Assume that I have a table : students ______________________________________________________ |id| name| school| class|[详细]
2023-03-12 06:00 分类:问答Escaping input for LIKE in Zend_Db
What is the right way to escape text that is passed to query with LIKE pattern matching? The problem is that[详细]
2023-03-11 10:08 分类:问答How do I select for something with a colon with Zend_Db_Select?
I have a query where I need to select text with a colon inside, basically it looks like this: $select = $this->db->select()[详细]
2023-03-10 19:34 分类:问答Zend_Db_Select help with join
i\'m using the following code and get the following error $select = $model->select(); $select->from(array(\'stocktakejob\'),[详细]
2023-03-02 15:00 分类:问答Select ignores where clause using Zend_Db_Select
$table = new Zend_Db_Table(array(\'name\'=>\'rules\')); $select = $table->select(); $select->setTable($table);[详细]
2023-03-01 12:44 分类:问答