| 1 | <?php |
||
| 4 | class InsertBuilder extends AbstractBuilder |
||
| 5 | { |
||
| 6 | |||
| 7 | /** |
||
| 8 | * |
||
| 9 | * Builds the INTO clause. |
||
| 10 | * |
||
| 11 | * @return string |
||
| 12 | * |
||
| 13 | */ |
||
| 14 | 42 | public function buildInto($into) |
|
| 18 | |||
| 19 | |||
| 20 | /** |
||
| 21 | * |
||
| 22 | * Builds the inserted columns and values of the statement. |
||
| 23 | * |
||
| 24 | * @return string |
||
| 25 | * |
||
| 26 | */ |
||
| 27 | 22 | public function buildValuesForInsert($col_values) |
|
| 35 | |||
| 36 | /** |
||
| 37 | * |
||
| 38 | * Builds the bulk-inserted columns and values of the statement. |
||
| 39 | * |
||
| 40 | * @return string |
||
| 41 | * |
||
| 42 | */ |
||
| 43 | 20 | public function buildValuesForBulkInsert($col_order, $col_values_bulk) |
|
| 54 | } |
||
| 55 |