]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/WikiDB/adodb/drivers/adodb-mysqlt.inc.php
extra_empty_lines
[SourceForge/phpwiki.git] / lib / WikiDB / adodb / drivers / adodb-mysqlt.inc.php
1 <?php
2
3 /*
4 V4.22 15 Apr 2004  (c) 2000-2004 John Lim (jlim@natsoft.com.my). All rights reserved.
5   Released under both BSD license and Lesser GPL library license.
6   Whenever there is any discrepancy between the two licenses,
7   the BSD license will take precedence.
8   Set tabs to 8.
9
10   MySQL code that supports transactions. For MySQL 3.23 or later.
11   Code from James Poon <jpoon88@yahoo.com>
12
13   Requires mysql client. Works on Windows and Unix.
14 */
15
16 include_once(ADODB_DIR."/drivers/adodb-mysql.inc.php");
17
18 class ADODB_mysqlt extends ADODB_mysql {
19     var $databaseType = 'mysqlt';
20     var $ansiOuter = true; // for Version 3.23.17 or later
21     var $hasTransactions = true;
22
23     function BeginTrans()
24     {
25         if ($this->transOff) return true;
26         $this->transCnt += 1;
27         $this->Execute('SET AUTOCOMMIT=0');
28         $this->Execute('BEGIN');
29         return true;
30     }
31
32     function CommitTrans($ok=true)
33     {
34         if ($this->transOff) return true;
35         if (!$ok) return $this->RollbackTrans();
36
37         if ($this->transCnt) $this->transCnt -= 1;
38         $this->Execute('COMMIT');
39         $this->Execute('SET AUTOCOMMIT=1');
40         return true;
41     }
42
43     function RollbackTrans()
44     {
45         if ($this->transOff) return true;
46         if ($this->transCnt) $this->transCnt -= 1;
47         $this->Execute('ROLLBACK');
48         $this->Execute('SET AUTOCOMMIT=1');
49         return true;
50     }
51
52 }
53
54 class ADORecordSet_mysqlt extends ADORecordSet_mysql{
55     var $databaseType = "mysqlt";
56
57     function ADORecordSet_mysqlt($queryID,$mode=false) {
58         return $this->ADORecordSet_mysql($queryID,$mode);
59     }
60
61     function MoveNext()
62     {
63         if ($this->EOF) return false;
64
65         $this->_currentRow++;
66         // using & below slows things down by 20%!
67         $this->fields =  @mysql_fetch_array($this->_queryID,$this->fetchMode);
68         if ($this->fields) return true;
69         $this->EOF = true;
70
71         return false;
72     }
73 }
74 ?>