zend-db
MySql SHOW query in ZEND
In zend it is written like $table = $this->getTable(); $select = $table->select()->where(\'status = ?\',1)[详细]
2023-03-23 13:45 分类:问答zend db intersect
Does Zend_Db_Select object support Intersect?. It supports union (i.e this is possible, $db->select->union($sql1,$sql2) ), but when I look at the documentation, there is no method like intersect.[详细]
2023-03-21 12:52 分类:问答Modelling in Zend framework
I\'m working on a large project at the moment and am just wondering which is best practice, to model entities and sets of e开发者_运维问答ntities seperately or in one class?[详细]
2023-03-20 15:44 分类:问答Zend DB Table Abstract
I\'ve hit a bit of a brick wall in converting an SQL Query into a suitable ORM Query The query is pretty complex even in SQL Terms, But I am looking at ways of collating this into an ORM Query, as I\[详细]
2023-03-20 12:38 分类:问答How to model multilingual database with Zend, l18n mysql?
I know this topic was discusses a couple of times, but none of them represents the ultimate solution for me.[详细]
2023-03-18 12:32 分类:问答Zend DB Select : ORDER BY FIELD('id',some_array) - how?
How would you write the following query in Zend framewor开发者_运维知识库k? SELECT * FROM table_name ORDER BY FIELD(field_name, \'Small\',\'Medium\',\'Large\');[详细]
2023-03-18 12:08 分类:问答Zend_Db_Adapter_Abstract::update() must be an array
I am having some trouble updating a row. My class is extending Zend_Db_Table_Abstract 开发者_如何学编程[详细]
2023-03-16 21:10 分类:问答Recommended Practice with Zend Framework's DB components?
Here\'s a bit of context first: I am writing a project in PHP using Zend Framework and I have some E/R diagrams from past meetings with the client. The database schema was written for MySQL and now i[详细]
2023-03-15 15:44 分类:问答Zend_Db using multiple databases?
Is there a way I can use Zend_Db to make updates and insert crossing multiple (two) databases? Example,[详细]
2023-03-14 23:25 分类:问答Using concrete Zend_Db_Table_Abstract to efficiently iterate through a rowset
I\'m using a concrete implementation of Zend_Db_Table_Abstract: class DB_TestClass extends Zend_Db_Table_Abstract {[详细]
2023-03-14 23:02 分类:问答