weekly release 4.5dev
[moodle.git] / lib / adodb / drivers / adodb-postgres9.inc.php
blobfb9c6785e74f0fe54325d7e6742e35b6b5d7b2ee
1 <?php
2 /**
3 * ADOdb PostgreSQL 9+ driver
5 * This file is part of ADOdb, a Database Abstraction Layer library for PHP.
7 * @package ADOdb
8 * @link https://adodb.org Project's web site and documentation
9 * @link https://github.com/ADOdb/ADOdb Source code and issue tracker
11 * The ADOdb Library is dual-licensed, released under both the BSD 3-Clause
12 * and the GNU Lesser General Public Licence (LGPL) v2.1 or, at your option,
13 * any later version. This means you can use it in proprietary products.
14 * See the LICENSE.md file distributed with this source code for details.
15 * @license BSD-3-Clause
16 * @license LGPL-2.1-or-later
18 * @copyright 2000-2013 John Lim
19 * @copyright 2014 Damien Regad, Mark Newnham and the ADOdb community
22 // security - hide paths
23 if (!defined('ADODB_DIR')) die();
25 include_once(ADODB_DIR."/drivers/adodb-postgres8.inc.php");
27 class ADODB_postgres9 extends ADODB_postgres8
29 var $databaseType = 'postgres9';
32 class ADORecordSet_postgres9 extends ADORecordSet_postgres8
34 var $databaseType = "postgres9";
37 class ADORecordSet_assoc_postgres9 extends ADORecordSet_assoc_postgres8
39 var $databaseType = "postgres9";