adodb-oracle.inc.php 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  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. Latest version is available at http://adodb.sourceforge.net
  8. Oracle data driver. Requires Oracle client. Works on Windows and Unix and Oracle 7.
  9. If you are using Oracle 8 or later, use the oci8 driver which is much better and more reliable.
  10. */
  11. // security - hide paths
  12. if (!defined('ADODB_DIR')) die();
  13. class ADODB_oracle extends ADOConnection {
  14. var $databaseType = "oracle";
  15. var $replaceQuote = "''"; // string to use to replace quotes
  16. var $concat_operator='||';
  17. var $_curs;
  18. var $_initdate = true; // init date to YYYY-MM-DD
  19. var $metaTablesSQL = 'select table_name from cat';
  20. var $metaColumnsSQL = "select cname,coltype,width from col where tname='%s' order by colno";
  21. var $sysDate = "TO_DATE(TO_CHAR(SYSDATE,'YYYY-MM-DD'),'YYYY-MM-DD')";
  22. var $sysTimeStamp = 'SYSDATE';
  23. var $connectSID = true;
  24. function ADODB_oracle()
  25. {
  26. }
  27. // format and return date string in database date format
  28. function DBDate($d)
  29. {
  30. if (is_string($d)) $d = ADORecordSet::UnixDate($d);
  31. return 'TO_DATE('.adodb_date($this->fmtDate,$d).",'YYYY-MM-DD')";
  32. }
  33. // format and return date string in database timestamp format
  34. function DBTimeStamp($ts)
  35. {
  36. if (is_string($ts)) $d = ADORecordSet::UnixTimeStamp($ts);
  37. return 'TO_DATE('.adodb_date($this->fmtTimeStamp,$ts).",'RRRR-MM-DD, HH:MI:SS AM')";
  38. }
  39. function BeginTrans()
  40. {
  41. $this->autoCommit = false;
  42. ora_commitoff($this->_connectionID);
  43. return true;
  44. }
  45. function CommitTrans($ok=true)
  46. {
  47. if (!$ok) return $this->RollbackTrans();
  48. $ret = ora_commit($this->_connectionID);
  49. ora_commiton($this->_connectionID);
  50. return $ret;
  51. }
  52. function RollbackTrans()
  53. {
  54. $ret = ora_rollback($this->_connectionID);
  55. ora_commiton($this->_connectionID);
  56. return $ret;
  57. }
  58. /* there seems to be a bug in the oracle extension -- always returns ORA-00000 - no error */
  59. function ErrorMsg()
  60. {
  61. if ($this->_errorMsg !== false) return $this->_errorMsg;
  62. if (is_resource($this->_curs)) $this->_errorMsg = @ora_error($this->_curs);
  63. if (empty($this->_errorMsg)) $this->_errorMsg = @ora_error($this->_connectionID);
  64. return $this->_errorMsg;
  65. }
  66. function ErrorNo()
  67. {
  68. if ($this->_errorCode !== false) return $this->_errorCode;
  69. if (is_resource($this->_curs)) $this->_errorCode = @ora_errorcode($this->_curs);
  70. if (empty($this->_errorCode)) $this->_errorCode = @ora_errorcode($this->_connectionID);
  71. return $this->_errorCode;
  72. }
  73. // returns true or false
  74. function _connect($argHostname, $argUsername, $argPassword, $argDatabasename, $mode=0)
  75. {
  76. if (!function_exists('ora_plogon')) return null;
  77. // <G. Giunta 2003/03/03/> Reset error messages before connecting
  78. $this->_errorMsg = false;
  79. $this->_errorCode = false;
  80. // G. Giunta 2003/08/13 - This looks danegrously suspicious: why should we want to set
  81. // the oracle home to the host name of remote DB?
  82. // if ($argHostname) putenv("ORACLE_HOME=$argHostname");
  83. if($argHostname) { // code copied from version submitted for oci8 by Jorma Tuomainen <jorma.tuomainen@ppoy.fi>
  84. if (empty($argDatabasename)) $argDatabasename = $argHostname;
  85. else {
  86. if(strpos($argHostname,":")) {
  87. $argHostinfo=explode(":",$argHostname);
  88. $argHostname=$argHostinfo[0];
  89. $argHostport=$argHostinfo[1];
  90. } else {
  91. $argHostport="1521";
  92. }
  93. if ($this->connectSID) {
  94. $argDatabasename="(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=".$argHostname
  95. .")(PORT=$argHostport))(CONNECT_DATA=(SID=$argDatabasename)))";
  96. } else
  97. $argDatabasename="(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=".$argHostname
  98. .")(PORT=$argHostport))(CONNECT_DATA=(SERVICE_NAME=$argDatabasename)))";
  99. }
  100. }
  101. if ($argDatabasename) $argUsername .= "@$argDatabasename";
  102. //if ($argHostname) print "<p>Connect: 1st argument should be left blank for $this->databaseType</p>";
  103. if ($mode = 1)
  104. $this->_connectionID = ora_plogon($argUsername,$argPassword);
  105. else
  106. $this->_connectionID = ora_logon($argUsername,$argPassword);
  107. if ($this->_connectionID === false) return false;
  108. if ($this->autoCommit) ora_commiton($this->_connectionID);
  109. if ($this->_initdate) {
  110. $rs = $this->_query("ALTER SESSION SET NLS_DATE_FORMAT='YYYY-MM-DD'");
  111. if ($rs) ora_close($rs);
  112. }
  113. return true;
  114. }
  115. // returns true or false
  116. function _pconnect($argHostname, $argUsername, $argPassword, $argDatabasename)
  117. {
  118. return $this->_connect($argHostname, $argUsername, $argPassword, $argDatabasename, 1);
  119. }
  120. // returns query ID if successful, otherwise false
  121. function _query($sql,$inputarr=false)
  122. {
  123. // <G. Giunta 2003/03/03/> Reset error messages before executing
  124. $this->_errorMsg = false;
  125. $this->_errorCode = false;
  126. $curs = ora_open($this->_connectionID);
  127. if ($curs === false) return false;
  128. $this->_curs = $curs;
  129. if (!ora_parse($curs,$sql)) return false;
  130. if (ora_exec($curs)) return $curs;
  131. // <G. Giunta 2004/03/03> before we close the cursor, we have to store the error message
  132. // that we can obtain ONLY from the cursor (and not from the connection)
  133. $this->_errorCode = @ora_errorcode($curs);
  134. $this->_errorMsg = @ora_error($curs);
  135. // </G. Giunta 2004/03/03>
  136. @ora_close($curs);
  137. return false;
  138. }
  139. // returns true or false
  140. function _close()
  141. {
  142. return @ora_logoff($this->_connectionID);
  143. }
  144. }
  145. /*--------------------------------------------------------------------------------------
  146. Class Name: Recordset
  147. --------------------------------------------------------------------------------------*/
  148. class ADORecordset_oracle extends ADORecordSet {
  149. var $databaseType = "oracle";
  150. var $bind = false;
  151. function ADORecordset_oracle($queryID,$mode=false)
  152. {
  153. if ($mode === false) {
  154. global $ADODB_FETCH_MODE;
  155. $mode = $ADODB_FETCH_MODE;
  156. }
  157. $this->fetchMode = $mode;
  158. $this->_queryID = $queryID;
  159. $this->_inited = true;
  160. $this->fields = array();
  161. if ($queryID) {
  162. $this->_currentRow = 0;
  163. $this->EOF = !$this->_fetch();
  164. @$this->_initrs();
  165. } else {
  166. $this->_numOfRows = 0;
  167. $this->_numOfFields = 0;
  168. $this->EOF = true;
  169. }
  170. return $this->_queryID;
  171. }
  172. /* Returns: an object containing field information.
  173. Get column information in the Recordset object. fetchField() can be used in order to obtain information about
  174. fields in a certain query result. If the field offset isn't specified, the next field that wasn't yet retrieved by
  175. fetchField() is retrieved. */
  176. function FetchField($fieldOffset = -1)
  177. {
  178. $fld = new ADOFieldObject;
  179. $fld->name = ora_columnname($this->_queryID, $fieldOffset);
  180. $fld->type = ora_columntype($this->_queryID, $fieldOffset);
  181. $fld->max_length = ora_columnsize($this->_queryID, $fieldOffset);
  182. return $fld;
  183. }
  184. /* Use associative array to get fields array */
  185. function Fields($colname)
  186. {
  187. if (!$this->bind) {
  188. $this->bind = array();
  189. for ($i=0; $i < $this->_numOfFields; $i++) {
  190. $o = $this->FetchField($i);
  191. $this->bind[strtoupper($o->name)] = $i;
  192. }
  193. }
  194. return $this->fields[$this->bind[strtoupper($colname)]];
  195. }
  196. function _initrs()
  197. {
  198. $this->_numOfRows = -1;
  199. $this->_numOfFields = @ora_numcols($this->_queryID);
  200. }
  201. function _seek($row)
  202. {
  203. return false;
  204. }
  205. function _fetch($ignore_fields=false) {
  206. // should remove call by reference, but ora_fetch_into requires it in 4.0.3pl1
  207. if ($this->fetchMode & ADODB_FETCH_ASSOC)
  208. return @ora_fetch_into($this->_queryID,&$this->fields,ORA_FETCHINTO_NULLS|ORA_FETCHINTO_ASSOC);
  209. else
  210. return @ora_fetch_into($this->_queryID,&$this->fields,ORA_FETCHINTO_NULLS);
  211. }
  212. /* close() only needs to be called if you are worried about using too much memory while your script
  213. is running. All associated result memory for the specified result identifier will automatically be freed. */
  214. function _close()
  215. {
  216. return @ora_close($this->_queryID);
  217. }
  218. function MetaType($t,$len=-1)
  219. {
  220. if (is_object($t)) {
  221. $fieldobj = $t;
  222. $t = $fieldobj->type;
  223. $len = $fieldobj->max_length;
  224. }
  225. switch (strtoupper($t)) {
  226. case 'VARCHAR':
  227. case 'VARCHAR2':
  228. case 'CHAR':
  229. case 'VARBINARY':
  230. case 'BINARY':
  231. if ($len <= $this->blobSize) return 'C';
  232. case 'LONG':
  233. case 'LONG VARCHAR':
  234. case 'CLOB':
  235. return 'X';
  236. case 'LONG RAW':
  237. case 'LONG VARBINARY':
  238. case 'BLOB':
  239. return 'B';
  240. case 'DATE': return 'D';
  241. //case 'T': return 'T';
  242. case 'BIT': return 'L';
  243. case 'INT':
  244. case 'SMALLINT':
  245. case 'INTEGER': return 'I';
  246. default: return 'N';
  247. }
  248. }
  249. }
  250. ?>