public boolean updateAsDict (string $table, array $data, [string $whereCondition], [array $dataTypes])
Updates data on a table using custom RBDM SQL syntax Another, more convenient syntax
1 2 3 4 5 6 7 8 9 10 11 | //Updating existing robot $success = $connection ->updateAsDict( "robots" , array ( "name" => "New Astro Boy" ), "id = 101" ); //Next SQL sentence is sent to the database system UPDATE `robots` SET `name` = "Astro boy" WHERE id = 101 |
Please login to continue.