> -----Original Message----- > From: Yannick Derwa [mailto:[EMAIL PROTECTED] > > how use Zend_Db_Table without primary key in my table? > Because my table don't require a primary key
Your table must have a primary key constraint, or else you can't use it with Zend_Db_Table. If you have no primary key, you can still query the table using SQL queries with the Adapter methods like query() and fetchAll(). Note on terminology: primary key != autoincrement integer column Regards, Bill Karwin
