1
|
<?php
|
2
|
|
3
|
/**
|
4
|
* Class to represent a database connection
|
5
|
*
|
6
|
* $Id: Connection.php,v 1.12 2005/11/08 02:24:31 chriskl Exp $
|
7
|
*/
|
8
|
|
9
|
include_once('./classes/database/ADODB_base.php');
|
10
|
|
11
|
class Connection {
|
12
|
|
13
|
var $conn;
|
14
|
|
15
|
// The backend platform. Set to UNKNOWN by default.
|
16
|
var $platform = 'UNKNOWN';
|
17
|
|
18
|
/**
|
19
|
* Creates a new connection. Will actually make a database connection.
|
20
|
* @param $fetchMode Defaults to associative. Override for different behaviour
|
21
|
*/
|
22
|
function Connection($host, $port, $user, $password, $database, $fetchMode = ADODB_FETCH_ASSOC) {
|
23
|
$this->conn = &ADONewConnection('postgres7');
|
24
|
$this->conn->setFetchMode($fetchMode);
|
25
|
|
26
|
// Ignore host if null
|
27
|
if ($host === null || $host == '')
|
28
|
if ($port !== null && $port != '')
|
29
|
$pghost = ':'.$port;
|
30
|
else
|
31
|
$pghost = '';
|
32
|
else
|
33
|
$pghost = "{$host}:{$port}";
|
34
|
|
35
|
$this->conn->connect($pghost, $user, $password, $database);
|
36
|
}
|
37
|
|
38
|
/**
|
39
|
* Gets the name of the correct database driver to use. As a side effect,
|
40
|
* sets the platform.
|
41
|
* @param (return-by-ref) $description A description of the database and version
|
42
|
* @return The class name of the driver eg. Postgres73
|
43
|
* @return null if version is < 7.0
|
44
|
* @return -3 Database-specific failure
|
45
|
*/
|
46
|
function getDriver(&$description) {
|
47
|
// If we're on a recent enough PHP 5, and against PostgreSQL 7.4 or
|
48
|
// higher, we don't need to query for the version. This gives a great
|
49
|
// speed up.
|
50
|
if (function_exists('pg_version')) {
|
51
|
$v = pg_version($this->conn->_connectionID);
|
52
|
if (isset($v['server'])) $version = $v['server'];
|
53
|
}
|
54
|
|
55
|
// If we didn't manage to get the version without a query, query...
|
56
|
if (!isset($version)) {
|
57
|
$adodb = new ADODB_base($this->conn);
|
58
|
|
59
|
$sql = "SELECT VERSION() AS version";
|
60
|
$field = $adodb->selectField($sql, 'version');
|
61
|
|
62
|
// Check the platform, if it's mingw, set it
|
63
|
if (eregi(' mingw ', $field))
|
64
|
$this->platform = 'MINGW';
|
65
|
|
66
|
$params = explode(' ', $field);
|
67
|
if (!isset($params[1])) return -3;
|
68
|
|
69
|
$version = $params[1]; // eg. 7.3.2
|
70
|
}
|
71
|
|
72
|
$description = "PostgreSQL {$version}";
|
73
|
|
74
|
// Detect version and choose appropriate database driver
|
75
|
// If unknown version, then default to latest driver
|
76
|
// All 6.x versions default to oldest driver, even though
|
77
|
// it won't work with those versions.
|
78
|
if ((int)substr($version, 0, 1) < 7)
|
79
|
return null;
|
80
|
elseif (strpos($version, '8.1') === 0)
|
81
|
return 'Postgres81';
|
82
|
elseif (strpos($version, '8.0') === 0 || strpos($version, '7.5') === 0)
|
83
|
return 'Postgres80';
|
84
|
elseif (strpos($version, '7.4') === 0)
|
85
|
return 'Postgres74';
|
86
|
elseif (strpos($version, '7.3') === 0)
|
87
|
return 'Postgres73';
|
88
|
elseif (strpos($version, '7.2') === 0)
|
89
|
return 'Postgres72';
|
90
|
elseif (strpos($version, '7.1') === 0)
|
91
|
return 'Postgres71';
|
92
|
elseif (strpos($version, '7.0') === 0)
|
93
|
return 'Postgres';
|
94
|
else
|
95
|
return 'Postgres82';
|
96
|
}
|
97
|
|
98
|
/**
|
99
|
* Get the last error in the connection
|
100
|
* @return Error string
|
101
|
*/
|
102
|
function getLastError() {
|
103
|
if (function_exists('pg_errormessage'))
|
104
|
return pg_errormessage($this->conn->_connectionID);
|
105
|
else
|
106
|
return pg_last_error($this->conn->_connectionID);
|
107
|
}
|
108
|
}
|
109
|
|
110
|
?>
|