Differences Between: [Versions 310 and 402] [Versions 311 and 402] [Versions 39 and 402]
1 <?php 2 /** 3 * ADOdb Proxy Server driver 4 * 5 * @deprecated 6 * 7 * This file is part of ADOdb, a Database Abstraction Layer library for PHP. 8 * 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 12 * 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 19 * 20 * @copyright 2000-2013 John Lim 21 * @copyright 2014 Damien Regad, Mark Newnham and the ADOdb community 22 */ 23 24 // security - hide paths 25 if (!defined('ADODB_DIR')) die(); 26 27 if (! defined("_ADODB_PROXY_LAYER")) { 28 define("_ADODB_PROXY_LAYER", 1 ); 29 include_once(ADODB_DIR."/drivers/adodb-csv.inc.php"); 30 31 class ADODB_proxy extends ADODB_csv { 32 var $databaseType = 'proxy'; 33 var $databaseProvider = 'csv'; 34 } 35 36 class ADORecordset_proxy extends ADORecordset_csv { 37 var $databaseType = "proxy"; 38 } 39 40 } // define
title
Description
Body
title
Description
Body
title
Description
Body
title
Body