1 |
6daefa8c
|
Petr Lukašík
|
<?php
|
2 |
|
|
|
3 |
|
|
/**
|
4 |
|
|
* PostgreSQL 8.2 support
|
5 |
|
|
*
|
6 |
|
|
* $Id: Postgres82.php,v 1.1 2005/11/08 02:24:31 chriskl Exp $
|
7 |
|
|
*/
|
8 |
|
|
|
9 |
|
|
include_once('./classes/database/Postgres81.php');
|
10 |
|
|
|
11 |
|
|
class Postgres82 extends Postgres81 {
|
12 |
|
|
|
13 |
|
|
var $major_version = 8.2;
|
14 |
|
|
|
15 |
|
|
// Last oid assigned to a system object
|
16 |
|
|
var $_lastSystemOID = 17231;
|
17 |
|
|
|
18 |
|
|
/**
|
19 |
|
|
* Constructor
|
20 |
|
|
* @param $conn The database connection
|
21 |
|
|
*/
|
22 |
|
|
function Postgres82($conn) {
|
23 |
|
|
$this->Postgres81($conn);
|
24 |
|
|
}
|
25 |
|
|
|
26 |
|
|
// Help functions
|
27 |
|
|
|
28 |
|
|
function getHelpPages() {
|
29 |
|
|
include_once('./help/PostgresDoc82.php');
|
30 |
|
|
return $this->help_page;
|
31 |
|
|
}
|
32 |
|
|
|
33 |
|
|
}
|
34 |
|
|
|
35 |
|
|
?>
|