File: Postgres90.php

package info (click to toggle)
phppgadmin 5.1%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 3,916 kB
  • ctags: 4,657
  • sloc: php: 47,091; sh: 37; sql: 16; makefile: 5
file content (33 lines) | stat: -rw-r--r-- 499 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php

/**
 * PostgreSQL 9.0 support
 *
 * $Id: Postgres82.php,v 1.10 2007/12/28 16:21:25 ioguix Exp $
 */

include_once('./classes/database/Postgres91.php');

class Postgres90 extends Postgres91 {

	var $major_version = 9.0;

	/**
	 * Constructor
	 * @param $conn The database connection
	 */
	function Postgres90($conn) {
		$this->Postgres($conn);
	}

	// Help functions

	function getHelpPages() {
		include_once('./help/PostgresDoc90.php');
		return $this->help_page;
	}

	// Capabilities

}
?>