| 1 | <?php |
||
| 9 | class PostgresDatabase extends Database |
||
| 10 | { |
||
| 11 | 1 | public function __construct() |
|
| 21 | |||
| 22 | /** |
||
| 23 | * @param Table $from |
||
| 24 | * |
||
| 25 | * @return PostgresSelectQuery |
||
| 26 | */ |
||
| 27 | public function select(Table $from) |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @param Table $into |
||
| 34 | * |
||
| 35 | * @return PostgresInsertQuery |
||
| 36 | */ |
||
| 37 | 1 | public function insert(Table $into) |
|
| 41 | |||
| 42 | /** |
||
| 43 | * @param Table $table |
||
| 44 | * |
||
| 45 | * @return PostgresUpdateQuery |
||
| 46 | */ |
||
| 47 | public function update(Table $table) |
||
| 51 | |||
| 52 | /** |
||
| 53 | * @param Table $table |
||
| 54 | * |
||
| 55 | * @return PostgresDeleteQuery |
||
| 56 | */ |
||
| 57 | public function delete(Table $table) |
||
| 61 | |||
| 62 | 1 | protected function createDriver() |
|
| 66 | } |
||
| 67 |