I'm developing a website which uses PostgreSQL as database server. When I tried to insert a new record I got this:
*Fatal error*: Uncaught exception 'Zend_Db_Statement_Exception' with message 'SQLSTATE[42P01]: Undefined table: 7 ERROR: relation "sections_id_seq" does not exist'. I found that Zend_Db_Table is made to use sequence name as 'tableName_primaryKey_seq'. And this is not always valid as it's possible (as I did) to name sequences differently. Is this deliberate? Adam
