fixed typo in security checks for prescription access
[openemr.git] / library / adodb / drivers / adodb-ado_access.inc.php
blob74b37a5776054c6ef1847c8b69ca1edab58cc3cb
1 <?php
2 /*
3 V4.20 22 Feb 2004 (c) 2000-2004 John Lim (jlim@natsoft.com.my). All rights reserved.
4 Released under both BSD license and Lesser GPL library license.
5 Whenever there is any discrepancy between the two licenses,
6 the BSD license will take precedence. See License.txt.
7 Set tabs to 4 for best viewing.
9 Latest version is available at http://php.weblogs.com/
11 Microsoft Access ADO data driver. Requires ADO and ODBC. Works only on MS Windows.
14 if (!defined('_ADODB_ADO_LAYER')) {
15 include(ADODB_DIR."/drivers/adodb-ado.inc.php");
18 class ADODB_ado_access extends ADODB_ado {
19 var $databaseType = 'ado_access';
20 var $hasTop = 'top'; // support mssql SELECT TOP 10 * FROM TABLE
21 var $fmtDate = "#Y-m-d#";
22 var $fmtTimeStamp = "#Y-m-d h:i:sA#";// note no comma
23 var $sysDate = "FORMAT(NOW,'yyyy-mm-dd')";
24 var $sysTimeStamp = 'NOW';
25 var $hasTransactions = false;
27 function ADODB_ado_access()
29 $this->ADODB_ado();
32 function BeginTrans() { return false;}
37 class ADORecordSet_ado_access extends ADORecordSet_ado {
39 var $databaseType = "ado_access";
41 function ADORecordSet_ado_access($id,$mode=false)
43 return $this->ADORecordSet_ado($id,$mode);