adodb-borland_ibase.inc.php 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <?php
  2. /*
  3. V4.60 24 Jan 2005 (c) 2000-2005 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.
  7. Set tabs to 4 for best viewing.
  8. Latest version is available at http://adodb.sourceforge.net
  9. Support Borland Interbase 6.5 and later
  10. */
  11. // security - hide paths
  12. if (!defined('ADODB_DIR')) die();
  13. include_once(ADODB_DIR."/drivers/adodb-ibase.inc.php");
  14. class ADODB_borland_ibase extends ADODB_ibase {
  15. var $databaseType = "borland_ibase";
  16. function ADODB_borland_ibase()
  17. {
  18. $this->ADODB_ibase();
  19. }
  20. function BeginTrans()
  21. {
  22. if ($this->transOff) return true;
  23. $this->transCnt += 1;
  24. $this->autoCommit = false;
  25. $this->_transactionID = ibase_trans($this->ibasetrans, $this->_connectionID);
  26. return $this->_transactionID;
  27. }
  28. function ServerInfo()
  29. {
  30. $arr['dialect'] = $this->dialect;
  31. switch($arr['dialect']) {
  32. case '':
  33. case '1': $s = 'Interbase 6.5, Dialect 1'; break;
  34. case '2': $s = 'Interbase 6.5, Dialect 2'; break;
  35. default:
  36. case '3': $s = 'Interbase 6.5, Dialect 3'; break;
  37. }
  38. $arr['version'] = '6.5';
  39. $arr['description'] = $s;
  40. return $arr;
  41. }
  42. // Note that Interbase 6.5 uses ROWS instead - don't you love forking wars!
  43. // SELECT col1, col2 FROM table ROWS 5 -- get 5 rows
  44. // SELECT col1, col2 FROM TABLE ORDER BY col1 ROWS 3 TO 7 -- first 5 skip 2
  45. // Firebird uses
  46. // SELECT FIRST 5 SKIP 2 col1, col2 FROM TABLE
  47. function &SelectLimit($sql,$nrows=-1,$offset=-1,$inputarr=false,$secs2cache=0)
  48. {
  49. if ($nrows > 0) {
  50. if ($offset <= 0) $str = " ROWS $nrows ";
  51. else {
  52. $a = $offset+1;
  53. $b = $offset+$nrows;
  54. $str = " ROWS $a TO $b";
  55. }
  56. } else {
  57. // ok, skip
  58. $a = $offset + 1;
  59. $str = " ROWS $a TO 999999999"; // 999 million
  60. }
  61. $sql .= $str;
  62. return ($secs2cache) ?
  63. $this->CacheExecute($secs2cache,$sql,$inputarr)
  64. :
  65. $this->Execute($sql,$inputarr);
  66. }
  67. };
  68. class ADORecordSet_borland_ibase extends ADORecordSet_ibase {
  69. var $databaseType = "borland_ibase";
  70. function ADORecordSet_borland_ibase($id,$mode=false)
  71. {
  72. $this->ADORecordSet_ibase($id,$mode);
  73. }
  74. }
  75. ?>