I would like to use "ON DUPLICATE KEY UPDATE" in Zend Framework, is this possible?
Example
INSERT INTO sometable (...) VALUES (...) ON DUPLICATE KEY UPDATE ...
|
2
|
I would like to use "ON DUPLICATE KEY UPDATE" in Zend Framework, is this possible? Example INSERT INTO sometable (...) VALUES (...) ON DUPLICATE KEY UPDATE ...
|
|||
|
|
|
|
I worked for Zend and specifically worked on Zend_Db quite a bit. No, there is no API support for the I do not recommend interpolating values into the SQL as harvejs shows. Use query parameters. Note that you have to repeat the list of values:
I included |
||||||||
|
|
|
As a sidebar to the accepted answers on this thread, you can simplify the ON DUPLICATE KEY UPDATE clause and reduce the amount of processing your script needs to do by using VALUES():
http://dev.mysql.com/doc/refman/5.1/en/insert-on-duplicate.html |
||
|
|
|
|
@Bill Karwin: great solutions! But it would be greater if to use named placeholders (":id", ":col1", …) instead of questions signs. Than you wouldn’n need to duplicate values by array_marge. Also if to use "SET" syntax of "INSERT" instead of "VALUES", the code gets simplier to be generated automatically for any set of fields.
|
||
|
|
|
|
I was searching for this also long time, but finally I found answer only to write own sql query. Something like: $db->query('INSERT INTO table ( column ... ... ) VALUES( "'.$value.'" ... ... )
I don't found another solution |
||
|
|
|
|
If your doing something like this, then most likely your design is flawed. |
||||||
|