adodb-oci805.inc.php 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?php
  2. /**
  3. * @version 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. *
  8. * Set tabs to 4 for best viewing.
  9. *
  10. * Latest version is available at http://php.weblogs.com
  11. *
  12. * Oracle 8.0.5 driver
  13. */
  14. // security - hide paths
  15. if (!defined('ADODB_DIR')) die();
  16. include_once(ADODB_DIR.'/drivers/adodb-oci8.inc.php');
  17. class ADODB_oci805 extends ADODB_oci8 {
  18. var $databaseType = "oci805";
  19. var $connectSID = true;
  20. function ADODB_oci805()
  21. {
  22. $this->ADODB_oci8();
  23. }
  24. function &SelectLimit($sql,$nrows=-1,$offset=-1, $inputarr=false,$secs2cache=0)
  25. {
  26. // seems that oracle only supports 1 hint comment in 8i
  27. if (strpos($sql,'/*+') !== false)
  28. $sql = str_replace('/*+ ','/*+FIRST_ROWS ',$sql);
  29. else
  30. $sql = preg_replace('/^[ \t\n]*select/i','SELECT /*+FIRST_ROWS*/',$sql);
  31. /*
  32. The following is only available from 8.1.5 because order by in inline views not
  33. available before then...
  34. http://www.jlcomp.demon.co.uk/faq/top_sql.html
  35. if ($nrows > 0) {
  36. if ($offset > 0) $nrows += $offset;
  37. $sql = "select * from ($sql) where rownum <= $nrows";
  38. $nrows = -1;
  39. }
  40. */
  41. return ADOConnection::SelectLimit($sql,$nrows,$offset,$inputarr,$secs2cache);
  42. }
  43. }
  44. class ADORecordset_oci805 extends ADORecordset_oci8 {
  45. var $databaseType = "oci805";
  46. function ADORecordset_oci805($id,$mode=false)
  47. {
  48. $this->ADORecordset_oci8($id,$mode);
  49. }
  50. }
  51. ?>