| 1 | <?php |
||
| 4 | class UpdateBuilder extends AbstractBuilder |
||
| 5 | { |
||
| 6 | /** |
||
| 7 | * |
||
| 8 | * Builds the table clause. |
||
| 9 | * |
||
| 10 | * @return null |
||
| 11 | * |
||
| 12 | */ |
||
| 13 | 16 | public function buildTable($table) |
|
| 17 | |||
| 18 | /** |
||
| 19 | * |
||
| 20 | * Builds the updated columns and values of the statement. |
||
| 21 | * |
||
| 22 | * @return string |
||
| 23 | * |
||
| 24 | */ |
||
| 25 | 16 | public function buildValuesForUpdate($col_values) |
|
| 33 | } |
||
| 34 |