zend-db-table
Zend_Db, how to work with related tables?
I want to learn to work with related tables in the ZF to the end. (1) Can anyone help with this? there are 2 users table and *users_openid* with a link to many. I would like to implement a relationsh[详细]
2023-01-20 12:33 分类:问答Load models in Zend Framework
I tried to search here before creating this, but I couldn\'t find anything. I have a simple project without modules and I\'d like to load my models (which are inside application/models) without using[详细]
2023-01-17 08:11 分类:问答Problem with Zend_Db_Abstract in Model
I\'ve found out that when I extends Zend_Db_Table_Abstract in my model I get An Error Ocurred Aplication error[详细]
2023-01-14 23:29 分类:问答How does one query a Zend_Db_Table_Row
Is it possible to run an SQL (Zend_Db_Select) query against a Zend_Db_Table_Row object? What about joining two Zend_Db_Table_Row objects?[详细]
2023-01-13 20:31 分类:问答findDependentRowset returning all rows
I have these two models: class Application_Model_List extends Zend_Db_Table_Abstract { protected $_name = \'list\';[详细]
2023-01-13 05:15 分类:问答zend framework components DB can't find class Zend_Paginator_Adapter_DbTableSelect
I\'m using some Zend libraries outside of the Zend Framework in a small project. I\'m using Zend_Db and Zend_Paginator but when I\'m trying to set up the pagination using Zend_Paginator_Adapter_DbTabl[详细]
2023-01-13 02:19 分类:问答Zend Db Table Abstract fetchRow add new objects to it
I have a fetchRow, that is done like it: $db = new Database(); $data = $db->fetchRow($db->select()->where(\'id = ?\',$id));[详细]
2023-01-10 20:55 分类:问答Cannot refresh row as parent is missing. Zend Framework
i am getting the error \"Cannot refresh row as parent is missing\" when I try to save. Here is my code[详细]
2023-01-10 16:07 分类:问答How can I join tables in Zend while using a class that inherits from Zend_Db_Table_Row_Abstract?
I have a class that extends Zend_Db_Table lets call it \'Users\' that uses the class \'User\' (inheriting from Zend_Db_Table_Row_Abstract) as its rowClass. I need it this way because User has addition[详细]
2023-01-07 16:01 分类:问答Changing Zend_Db_Select's output to Zend_Db_Table_Rowset
I have the following code inside a class that extends Zend_Db_Table_Abstract: public function fetchByFriends($id) {[详细]
2023-01-04 07:47 分类:问答