Database access component for the Zend Framework.
I am facing a strange issue The Zend_DB_Adapter's beginTrasaction() and commit() methods don't seem to be working as …
mysql zend-framework transactions zend-db referential-integrityI'm parsing a json feed routinely and need to insert only the newest users from the feed and ignore existing …
php mysql sql zend-framework zend-dbI have the following raw query which moves items from a shopping cart to an order table: insert into webshop_…
php zend-dbGiven my generic select below, is there a way to get the number of records returned from a query with …
php zend-framework zend-dbI am using this to retrieve the database connection atm. $db = Zend_Db_Table::getDefaultAdapter(); I do set this up …
zend-framework zend-db zend-db-tableI've seen several code samples that do this in application.ini resources.db.adapter = mysqli or resources.db.adapter = PDO_…
php mysql database zend-framework zend-dbI'm using Zend_DB and trying to change the charset to utf8, here is the code: config.ini : [development] db.…
php mysql zend-framework character-encoding zend-dbIt seems like there's a few different ways to join two tables using the Zend Framework, but I've never done …
zend-framework inner-join zend-db zend-db-table zend-db-selectHow to use the database mapper with the paginator? I'm having a bit trouble understanding how I implement the DbSelect …
zend-framework2 zend-db zend-paginator tablegatewayI have the following code $result = $handle->select()->from('store_details') ->where('store_details.store_…
php zend-framework zend-db