on-demand release 4.5dev+
[moodle.git] / lib / adodb / drivers / adodb-proxy.inc.php
blob3be13179a4f68a399cf6eaa18b2a7eb66417ee92
1 <?php
2 /**
3 * ADOdb Proxy Server driver
5 * @deprecated
7 * This file is part of ADOdb, a Database Abstraction Layer library for PHP.
9 * @package ADOdb
10 * @link https://adodb.org Project's web site and documentation
11 * @link https://github.com/ADOdb/ADOdb Source code and issue tracker
13 * The ADOdb Library is dual-licensed, released under both the BSD 3-Clause
14 * and the GNU Lesser General Public Licence (LGPL) v2.1 or, at your option,
15 * any later version. This means you can use it in proprietary products.
16 * See the LICENSE.md file distributed with this source code for details.
17 * @license BSD-3-Clause
18 * @license LGPL-2.1-or-later
20 * @copyright 2000-2013 John Lim
21 * @copyright 2014 Damien Regad, Mark Newnham and the ADOdb community
24 // security - hide paths
25 if (!defined('ADODB_DIR')) die();
27 if (! defined("_ADODB_PROXY_LAYER")) {
28 define("_ADODB_PROXY_LAYER", 1 );
29 include_once(ADODB_DIR."/drivers/adodb-csv.inc.php");
31 class ADODB_proxy extends ADODB_csv {
32 var $databaseType = 'proxy';
33 var $databaseProvider = 'csv';
36 class ADORecordset_proxy extends ADORecordset_csv {
37 var $databaseType = "proxy";
40 } // define