Added by Mark Gibson, last edited by Simon Mundy on Jan 20, 2008  (view change)

Labels

 
(None)

SQL Reference Manuals

Here's a list of the SQL reference manuals for the supported database systems.
I thought it may help development of Zend_Db_Select, and other database modules.

Please add missing systems and versions, and strike out any non-supported versions.
The links should lead directly to an index of the SQL reference manual.

Unit Testing

Many of the adapters supported by Zend_Framework require some fine-tuning for them to pass unit testing. Adapter-specific notes are listed below for reference.

Pdo_Mssql

  • The transaction suite does not work consistently if two concurrent connections are made to the database. The driver-specific tests rely on a single connection only to perform database updates and to then test the integrity of those updates after a COMMIT and a ROLLBACK
  • Manipulating primary keys' values should only be attempted after performing a query 'SET IDENTITY_INSERT [table_name] ON' and subsequently turning off this behaviour with 'SET IDENTITY_INSERT [table_name] OFF'