Creative, Informative and Entertaining Stuff for everyone

Monday February 6th 2012

Categories

Archives

Calender

December 2009
S M T W T F S
« Oct   Jul »
 12345
6789101112
13141516171819
20212223242526
2728293031  

Archive for December 11th, 2009

Update query in symfony

Suppose you want to execute query like UPDATE tableName SET column1 = 'abc',column2 = 'xyz' WHERE column ='1'; then you can use the below syntax to do so :) ---------------------------------------------------------------------------- $con = Propel::getConnection(); /* Here you have to set the condition for which you need to update */ $c1 = [...]