| 1 | <?php |
||
| 11 | class PostgresConnectionHandler extends ConnectionHandler |
||
|
|
|||
| 12 | { |
||
| 13 | /** |
||
| 14 | * Get auto increment value. |
||
| 15 | * |
||
| 16 | * Returns the value used for autoincrement tables. Usually this will just |
||
| 17 | * be null. In case for sequence based RDBMS this method can return a |
||
| 18 | * proper value for the given column. |
||
| 19 | * |
||
| 20 | * @param string $table |
||
| 21 | * @param string $column |
||
| 22 | * |
||
| 23 | * @return mixed |
||
| 24 | */ |
||
| 25 | public function getAutoIncrementValue($table, $column) |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Returns the name of the affected sequence. |
||
| 32 | * |
||
| 33 | * @param string $table |
||
| 34 | * @param string $column |
||
| 35 | * |
||
| 36 | * @return string |
||
| 37 | */ |
||
| 38 | public function getSequenceName($table, $column) |
||
| 42 | |||
| 43 | /** |
||
| 44 | * Custom quote identifier method. |
||
| 45 | * |
||
| 46 | * @param string $identifier |
||
| 47 | * |
||
| 48 | * @return string |
||
| 49 | */ |
||
| 50 | public function quoteIdentifier($identifier) |
||
| 54 | } |
||
| 55 |
This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.