adodb-oci8po.inc.php 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. <?php
  2. /*
  3. V4.60 24 Jan 2005 (c) 2000-2005 John Lim. 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. Latest version is available at http://adodb.sourceforge.net
  8. Portable version of oci8 driver, to make it more similar to other database drivers.
  9. The main differences are
  10. 1. that the OCI_ASSOC names are in lowercase instead of uppercase.
  11. 2. bind variables are mapped using ? instead of :<bindvar>
  12. Should some emulation of RecordCount() be implemented?
  13. */
  14. // security - hide paths
  15. if (!defined('ADODB_DIR')) die();
  16. include_once(ADODB_DIR.'/drivers/adodb-oci8.inc.php');
  17. class ADODB_oci8po extends ADODB_oci8 {
  18. var $databaseType = 'oci8po';
  19. var $dataProvider = 'oci8';
  20. var $metaColumnsSQL = "select lower(cname),coltype,width, SCALE, PRECISION, NULLS, DEFAULTVAL from col where tname='%s' order by colno"; //changed by smondino@users.sourceforge. net
  21. var $metaTablesSQL = "select lower(table_name),table_type from cat where table_type in ('TABLE','VIEW')";
  22. function ADODB_oci8po()
  23. {
  24. $this->_hasOCIFetchStatement = ADODB_PHPVER >= 0x4200;
  25. # oci8po does not support adodb extension: adodb_movenext()
  26. }
  27. function Param($name)
  28. {
  29. return '?';
  30. }
  31. function Prepare($sql,$cursor=false)
  32. {
  33. $sqlarr = explode('?',$sql);
  34. $sql = $sqlarr[0];
  35. for ($i = 1, $max = sizeof($sqlarr); $i < $max; $i++) {
  36. $sql .= ':'.($i-1) . $sqlarr[$i];
  37. }
  38. return ADODB_oci8::Prepare($sql,$cursor);
  39. }
  40. // emulate handling of parameters ? ?, replacing with :bind0 :bind1
  41. function _query($sql,$inputarr)
  42. {
  43. if (is_array($inputarr)) {
  44. $i = 0;
  45. if (is_array($sql)) {
  46. foreach($inputarr as $v) {
  47. $arr['bind'.$i++] = $v;
  48. }
  49. } else {
  50. $sqlarr = explode('?',$sql);
  51. $sql = $sqlarr[0];
  52. foreach($inputarr as $k => $v) {
  53. $sql .= ":$k" . $sqlarr[++$i];
  54. }
  55. }
  56. }
  57. return ADODB_oci8::_query($sql,$inputarr);
  58. }
  59. }
  60. /*--------------------------------------------------------------------------------------
  61. Class Name: Recordset
  62. --------------------------------------------------------------------------------------*/
  63. class ADORecordset_oci8po extends ADORecordset_oci8 {
  64. var $databaseType = 'oci8po';
  65. function ADORecordset_oci8po($queryID,$mode=false)
  66. {
  67. $this->ADORecordset_oci8($queryID,$mode);
  68. }
  69. function Fields($colname)
  70. {
  71. if ($this->fetchMode & OCI_ASSOC) return $this->fields[$colname];
  72. if (!$this->bind) {
  73. $this->bind = array();
  74. for ($i=0; $i < $this->_numOfFields; $i++) {
  75. $o = $this->FetchField($i);
  76. $this->bind[strtoupper($o->name)] = $i;
  77. }
  78. }
  79. return $this->fields[$this->bind[strtoupper($colname)]];
  80. }
  81. // lowercase field names...
  82. function &_FetchField($fieldOffset = -1)
  83. {
  84. $fld = new ADOFieldObject;
  85. $fieldOffset += 1;
  86. $fld->name = strtolower(OCIcolumnname($this->_queryID, $fieldOffset));
  87. $fld->type = OCIcolumntype($this->_queryID, $fieldOffset);
  88. $fld->max_length = OCIcolumnsize($this->_queryID, $fieldOffset);
  89. if ($fld->type == 'NUMBER') {
  90. //$p = OCIColumnPrecision($this->_queryID, $fieldOffset);
  91. $sc = OCIColumnScale($this->_queryID, $fieldOffset);
  92. if ($sc == 0) $fld->type = 'INT';
  93. }
  94. return $fld;
  95. }
  96. /*
  97. function MoveNext()
  98. {
  99. if (@OCIfetchinto($this->_queryID,$this->fields,$this->fetchMode)) {
  100. $this->_currentRow += 1;
  101. return true;
  102. }
  103. if (!$this->EOF) {
  104. $this->_currentRow += 1;
  105. $this->EOF = true;
  106. }
  107. return false;
  108. }*/
  109. // 10% speedup to move MoveNext to child class
  110. function MoveNext()
  111. {
  112. if(@OCIfetchinto($this->_queryID,$this->fields,$this->fetchMode)) {
  113. global $ADODB_ANSI_PADDING_OFF;
  114. $this->_currentRow++;
  115. if ($this->fetchMode & OCI_ASSOC) $this->_updatefields();
  116. if (!empty($ADODB_ANSI_PADDING_OFF)) {
  117. foreach($this->fields as $k => $v) {
  118. if (is_string($v)) $this->fields[$k] = rtrim($v);
  119. }
  120. }
  121. return true;
  122. }
  123. if (!$this->EOF) {
  124. $this->EOF = true;
  125. $this->_currentRow++;
  126. }
  127. return false;
  128. }
  129. /* Optimize SelectLimit() by using OCIFetch() instead of OCIFetchInto() */
  130. function &GetArrayLimit($nrows,$offset=-1)
  131. {
  132. if ($offset <= 0) return $this->GetArray($nrows);
  133. for ($i=1; $i < $offset; $i++)
  134. if (!@OCIFetch($this->_queryID)) return array();
  135. if (!@OCIfetchinto($this->_queryID,$this->fields,$this->fetchMode)) return array();
  136. if ($this->fetchMode & OCI_ASSOC) $this->_updatefields();
  137. $results = array();
  138. $cnt = 0;
  139. while (!$this->EOF && $nrows != $cnt) {
  140. $results[$cnt++] = $this->fields;
  141. $this->MoveNext();
  142. }
  143. return $results;
  144. }
  145. // Create associative array
  146. function _updatefields()
  147. {
  148. if (ADODB_ASSOC_CASE == 2) return; // native
  149. $arr = array();
  150. $lowercase = (ADODB_ASSOC_CASE == 0);
  151. foreach($this->fields as $k => $v) {
  152. if (is_integer($k)) $arr[$k] = $v;
  153. else {
  154. if ($lowercase)
  155. $arr[strtolower($k)] = $v;
  156. else
  157. $arr[strtoupper($k)] = $v;
  158. }
  159. }
  160. $this->fields = $arr;
  161. }
  162. function _fetch()
  163. {
  164. $ret = @OCIfetchinto($this->_queryID,$this->fields,$this->fetchMode);
  165. if ($ret) {
  166. global $ADODB_ANSI_PADDING_OFF;
  167. if ($this->fetchMode & OCI_ASSOC) $this->_updatefields();
  168. if (!empty($ADODB_ANSI_PADDING_OFF)) {
  169. foreach($this->fields as $k => $v) {
  170. if (is_string($v)) $this->fields[$k] = rtrim($v);
  171. }
  172. }
  173. }
  174. return $ret;
  175. }
  176. }
  177. ?>