~ubuntu-branches/ubuntu/breezy/moodle/breezy

« back to all changes in this revision

Viewing changes to lib/adodb/drivers/adodb-ado_access.inc.php

  • Committer: Bazaar Package Importer
  • Author(s): Andrew Mitchell
  • Date: 2005-10-13 02:00:59 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051013020059-y2qcyo41t7nqppcg
Tags: 1.5.2-1ubuntu1
* Resync with debian (security update)
* changed dependencys to php5
* changed apache dependency to apache2 
* References
  CAN-2005-2247

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<?php
2
2
/* 
3
 
V4.51 29 July 2004  (c) 2000-2004 John Lim (jlim@natsoft.com.my). All rights reserved.
 
3
V4.60 24 Jan 2005  (c) 2000-2005 John Lim (jlim@natsoft.com.my). All rights reserved.
4
4
Released under both BSD license and Lesser GPL library license. 
5
5
Whenever there is any discrepancy between the two licenses, 
6
6
the BSD license will take precedence. See License.txt. 
15
15
if (!defined('ADODB_DIR')) die();
16
16
 
17
17
if (!defined('_ADODB_ADO_LAYER')) {
18
 
        include(ADODB_DIR."/drivers/adodb-ado.inc.php");
 
18
        if (PHP_VERSION >= 5) include(ADODB_DIR."/drivers/adodb-ado5.inc.php");
 
19
        else include(ADODB_DIR."/drivers/adodb-ado.inc.php");
19
20
}
20
21
 
21
22
class  ADODB_ado_access extends ADODB_ado {     
33
34
        }
34
35
        
35
36
        function BeginTrans() { return false;}
 
37
        
 
38
        function CommitTrans() { return false;}
 
39
        
 
40
        function RollbackTrans() { return false;}
36
41
 
37
42
}
38
43