Andrey K. Korolyov wrote:
Why in Zend_Db_Adapter_Abstract::insert(); fields for database are not quoted ?
Hi Andrey,
Yes, this is an issue I am working on. My goal for Zend Framework 0.8 is that all identifiers are quoted appropriately for the Db adapter. The back-quotes (``) are a nonstandard usage by MySQL and should not be coded in Zend_Db_Adapter_Abstract. Microsoft SQL Server uses brackets ([ ]) and all others use double-quotes (""), which complies with the SQL standard.
Regards, Bill Karwin
