| 1 | <?php |
||
| 8 | class PostgresDatabase extends Database |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @param Table $from |
||
| 12 | * |
||
| 13 | * @return PostgresSelectQuery |
||
| 14 | */ |
||
| 15 | public function select(Table $from) |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @param Table $into |
||
| 22 | * |
||
| 23 | * @return PostgresInsertQuery |
||
| 24 | */ |
||
| 25 | 1 | public function insert(Table $into) |
|
| 29 | |||
| 30 | /** |
||
| 31 | * @param Table $table |
||
| 32 | * |
||
| 33 | * @return PostgresUpdateQuery |
||
| 34 | */ |
||
| 35 | public function update(Table $table) |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @param Table $table |
||
| 42 | * |
||
| 43 | * @return PostgresDeleteQuery |
||
| 44 | */ |
||
| 45 | public function delete(Table $table) |
||
| 49 | |||
| 50 | 1 | protected function createDriver() |
|
| 54 | } |
||
| 55 |