"TYPO3 4.0.1: typo3_src-4.0.1/typo3/sysext/adodb/adodb/drivers/adodb-proxy.inc.php Source File", "datetime" => "Sat Dec 2 19:22:26 2006", "date" => "2 Dec 2006", "doxygenversion" => "1.4.6", "projectname" => "TYPO3 4.0.1", "projectnumber" => "4.0.1" ); get_header($doxygen_vars); ?>
00001 <?php 00002 /* 00003 V4.90 8 June 2006 (c) 2000-2006 John Lim (jlim#natsoft.com.my). All rights reserved. 00004 Released under both BSD license and Lesser GPL library license. 00005 Whenever there is any discrepancy between the two licenses, 00006 the BSD license will take precedence. 00007 Set tabs to 4. 00008 00009 Synonym for csv driver. 00010 */ 00011 00012 // security - hide paths 00013 if (!defined('ADODB_DIR')) die(); 00014 00015 if (! defined("_ADODB_PROXY_LAYER")) { 00016 define("_ADODB_PROXY_LAYER", 1 ); 00017 include(ADODB_DIR."/drivers/adodb-csv.inc.php"); 00018 00019 class ADODB_proxy extends ADODB_csv { 00020 var $databaseType = 'proxy'; 00021 var $databaseProvider = 'csv'; 00022 } 00023 class ADORecordset_proxy extends ADORecordset_csv { 00024 var $databaseType = "proxy"; 00025 00026 function ADORecordset_proxy($id,$mode=false) 00027 { 00028 $this->ADORecordset($id,$mode); 00029 } 00030 }; 00031 } // define 00032 00033 ?>