adodb-oci8.inc.php 39 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394
  1. <?php
  2. /*
  3. version 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. Code contributed by George Fourlanos <fou@infomap.gr>
  9. 13 Nov 2000 jlim - removed all ora_* references.
  10. */
  11. // security - hide paths
  12. if (!defined('ADODB_DIR')) die();
  13. /*
  14. NLS_Date_Format
  15. Allows you to use a date format other than the Oracle Lite default. When a literal
  16. character string appears where a date value is expected, the Oracle Lite database
  17. tests the string to see if it matches the formats of Oracle, SQL-92, or the value
  18. specified for this parameter in the POLITE.INI file. Setting this parameter also
  19. defines the default format used in the TO_CHAR or TO_DATE functions when no
  20. other format string is supplied.
  21. For Oracle the default is dd-mon-yy or dd-mon-yyyy, and for SQL-92 the default is
  22. yy-mm-dd or yyyy-mm-dd.
  23. Using 'RR' in the format forces two-digit years less than or equal to 49 to be
  24. interpreted as years in the 21st century (2000–2049), and years over 50 as years in
  25. the 20th century (1950–1999). Setting the RR format as the default for all two-digit
  26. year entries allows you to become year-2000 compliant. For example:
  27. NLS_DATE_FORMAT='RR-MM-DD'
  28. You can also modify the date format using the ALTER SESSION command.
  29. */
  30. # define the LOB descriptor type for the given type
  31. # returns false if no LOB descriptor
  32. function oci_lob_desc($type) {
  33. switch ($type) {
  34. case OCI_B_BFILE: $result = OCI_D_FILE; break;
  35. case OCI_B_CFILEE: $result = OCI_D_FILE; break;
  36. case OCI_B_CLOB: $result = OCI_D_LOB; break;
  37. case OCI_B_BLOB: $result = OCI_D_LOB; break;
  38. case OCI_B_ROWID: $result = OCI_D_ROWID; break;
  39. default: $result = false; break;
  40. }
  41. return $result;
  42. }
  43. class ADODB_oci8 extends ADOConnection {
  44. var $databaseType = 'oci8';
  45. var $dataProvider = 'oci8';
  46. var $replaceQuote = "''"; // string to use to replace quotes
  47. var $concat_operator='||';
  48. var $sysDate = "TRUNC(SYSDATE)";
  49. var $sysTimeStamp = 'SYSDATE';
  50. var $metaDatabasesSQL = "SELECT USERNAME FROM ALL_USERS WHERE USERNAME NOT IN ('SYS','SYSTEM','DBSNMP','OUTLN') ORDER BY 1";
  51. var $_stmt;
  52. var $_commit = OCI_COMMIT_ON_SUCCESS;
  53. var $_initdate = true; // init date to YYYY-MM-DD
  54. var $metaTablesSQL = "select table_name,table_type from cat where table_type in ('TABLE','VIEW')";
  55. var $metaColumnsSQL = "select cname,coltype,width, SCALE, PRECISION, NULLS, DEFAULTVAL from col where tname='%s' order by colno"; //changed by smondino@users.sourceforge. net
  56. var $_bindInputArray = true;
  57. var $hasGenID = true;
  58. var $_genIDSQL = "SELECT (%s.nextval) FROM DUAL";
  59. var $_genSeqSQL = "CREATE SEQUENCE %s START WITH %s";
  60. var $_dropSeqSQL = "DROP SEQUENCE %s";
  61. var $hasAffectedRows = true;
  62. var $random = "abs(mod(DBMS_RANDOM.RANDOM,10000001)/10000000)";
  63. var $noNullStrings = false;
  64. var $connectSID = false;
  65. var $_bind = false;
  66. var $_hasOCIFetchStatement = false;
  67. var $_getarray = false; // currently not working
  68. var $leftOuter = ''; // oracle wierdness, $col = $value (+) for LEFT OUTER, $col (+)= $value for RIGHT OUTER
  69. var $session_sharing_force_blob = false; // alter session on updateblob if set to true
  70. var $firstrows = true; // enable first rows optimization on SelectLimit()
  71. var $selectOffsetAlg1 = 100; // when to use 1st algorithm of selectlimit.
  72. var $NLS_DATE_FORMAT = 'YYYY-MM-DD'; // To include time, use 'RRRR-MM-DD HH24:MI:SS'
  73. var $useDBDateFormatForTextInput=false;
  74. var $datetime = false; // MetaType('DATE') returns 'D' (datetime==false) or 'T' (datetime == true)
  75. var $_refLOBs = array();
  76. // var $ansiOuter = true; // if oracle9
  77. function ADODB_oci8()
  78. {
  79. $this->_hasOCIFetchStatement = ADODB_PHPVER >= 0x4200;
  80. if (defined('ADODB_EXTENSION')) $this->rsPrefix .= 'ext_';
  81. }
  82. /* Function &MetaColumns($table) added by smondino@users.sourceforge.net*/
  83. function &MetaColumns($table)
  84. {
  85. global $ADODB_FETCH_MODE;
  86. $false = false;
  87. $save = $ADODB_FETCH_MODE;
  88. $ADODB_FETCH_MODE = ADODB_FETCH_NUM;
  89. if ($this->fetchMode !== false) $savem = $this->SetFetchMode(false);
  90. $rs = $this->Execute(sprintf($this->metaColumnsSQL,strtoupper($table)));
  91. if (isset($savem)) $this->SetFetchMode($savem);
  92. $ADODB_FETCH_MODE = $save;
  93. if (!$rs) {
  94. return $false;
  95. }
  96. $retarr = array();
  97. while (!$rs->EOF) { //print_r($rs->fields);
  98. $fld = new ADOFieldObject();
  99. $fld->name = $rs->fields[0];
  100. $fld->type = $rs->fields[1];
  101. $fld->max_length = $rs->fields[2];
  102. $fld->scale = $rs->fields[3];
  103. if ($rs->fields[1] == 'NUMBER' && $rs->fields[3] == 0) {
  104. $fld->type ='INT';
  105. $fld->max_length = $rs->fields[4];
  106. }
  107. $fld->not_null = (strncmp($rs->fields[5], 'NOT',3) === 0);
  108. $fld->binary = (strpos($fld->type,'BLOB') !== false);
  109. $fld->default_value = $rs->fields[6];
  110. if ($ADODB_FETCH_MODE == ADODB_FETCH_NUM) $retarr[] = $fld;
  111. else $retarr[strtoupper($fld->name)] = $fld;
  112. $rs->MoveNext();
  113. }
  114. $rs->Close();
  115. return (empty($retarr)) ? $false : $retarr;
  116. }
  117. function Time()
  118. {
  119. $rs =& $this->Execute("select TO_CHAR($this->sysTimeStamp,'YYYY-MM-DD HH24:MI:SS') from dual");
  120. if ($rs && !$rs->EOF) return $this->UnixTimeStamp(reset($rs->fields));
  121. return false;
  122. }
  123. /*
  124. Multiple modes of connection are supported:
  125. a. Local Database
  126. $conn->Connect(false,'scott','tiger');
  127. b. From tnsnames.ora
  128. $conn->Connect(false,'scott','tiger',$tnsname);
  129. $conn->Connect($tnsname,'scott','tiger');
  130. c. Server + service name
  131. $conn->Connect($serveraddress,'scott,'tiger',$service_name);
  132. d. Server + SID
  133. $conn->connectSID = true;
  134. $conn->Connect($serveraddress,'scott,'tiger',$SID);
  135. Example TNSName:
  136. ---------------
  137. NATSOFT.DOMAIN =
  138. (DESCRIPTION =
  139. (ADDRESS_LIST =
  140. (ADDRESS = (PROTOCOL = TCP)(HOST = kermit)(PORT = 1523))
  141. )
  142. (CONNECT_DATA =
  143. (SERVICE_NAME = natsoft.domain)
  144. )
  145. )
  146. There are 3 connection modes, 0 = non-persistent, 1 = persistent, 2 = force new connection
  147. */
  148. function _connect($argHostname, $argUsername, $argPassword, $argDatabasename,$mode=0)
  149. {
  150. if (!function_exists('OCIPLogon')) return null;
  151. $this->_errorMsg = false;
  152. $this->_errorCode = false;
  153. if($argHostname) { // added by Jorma Tuomainen <jorma.tuomainen@ppoy.fi>
  154. if (empty($argDatabasename)) $argDatabasename = $argHostname;
  155. else {
  156. if(strpos($argHostname,":")) {
  157. $argHostinfo=explode(":",$argHostname);
  158. $argHostname=$argHostinfo[0];
  159. $argHostport=$argHostinfo[1];
  160. } else {
  161. $argHostport="1521";
  162. }
  163. if ($this->connectSID) {
  164. $argDatabasename="(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=".$argHostname
  165. .")(PORT=$argHostport))(CONNECT_DATA=(SID=$argDatabasename)))";
  166. } else
  167. $argDatabasename="(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=".$argHostname
  168. .")(PORT=$argHostport))(CONNECT_DATA=(SERVICE_NAME=$argDatabasename)))";
  169. }
  170. }
  171. //if ($argHostname) print "<p>Connect: 1st argument should be left blank for $this->databaseType</p>";
  172. if ($mode==1) {
  173. $this->_connectionID = ($this->charSet) ?
  174. OCIPLogon($argUsername,$argPassword, $argDatabasename)
  175. :
  176. OCIPLogon($argUsername,$argPassword, $argDatabasename, $this->charSet)
  177. ;
  178. if ($this->_connectionID && $this->autoRollback) OCIrollback($this->_connectionID);
  179. } else if ($mode==2) {
  180. $this->_connectionID = ($this->charSet) ?
  181. OCINLogon($argUsername,$argPassword, $argDatabasename)
  182. :
  183. OCINLogon($argUsername,$argPassword, $argDatabasename, $this->charSet);
  184. } else {
  185. $this->_connectionID = ($this->charSet) ?
  186. OCILogon($argUsername,$argPassword, $argDatabasename)
  187. :
  188. OCILogon($argUsername,$argPassword, $argDatabasename,$this->charSet);
  189. }
  190. if ($this->_connectionID === false) return false;
  191. if ($this->_initdate) {
  192. $this->Execute("ALTER SESSION SET NLS_DATE_FORMAT='".$this->NLS_DATE_FORMAT."'");
  193. }
  194. // looks like:
  195. // Oracle8i Enterprise Edition Release 8.1.7.0.0 - Production With the Partitioning option JServer Release 8.1.7.0.0 - Production
  196. // $vers = OCIServerVersion($this->_connectionID);
  197. // if (strpos($vers,'8i') !== false) $this->ansiOuter = true;
  198. return true;
  199. }
  200. function ServerInfo()
  201. {
  202. $arr['compat'] = $this->GetOne('select value from sys.database_compatible_level');
  203. $arr['description'] = @OCIServerVersion($this->_connectionID);
  204. $arr['version'] = ADOConnection::_findvers($arr['description']);
  205. return $arr;
  206. }
  207. // returns true or false
  208. function _pconnect($argHostname, $argUsername, $argPassword, $argDatabasename)
  209. {
  210. return $this->_connect($argHostname, $argUsername, $argPassword, $argDatabasename,1);
  211. }
  212. // returns true or false
  213. function _nconnect($argHostname, $argUsername, $argPassword, $argDatabasename)
  214. {
  215. return $this->_connect($argHostname, $argUsername, $argPassword, $argDatabasename,2);
  216. }
  217. function _affectedrows()
  218. {
  219. if (is_resource($this->_stmt)) return @OCIRowCount($this->_stmt);
  220. return 0;
  221. }
  222. function IfNull( $field, $ifNull )
  223. {
  224. return " NVL($field, $ifNull) "; // if Oracle
  225. }
  226. // format and return date string in database date format
  227. function DBDate($d)
  228. {
  229. if (empty($d) && $d !== 0) return 'null';
  230. if (is_string($d)) $d = ADORecordSet::UnixDate($d);
  231. return "TO_DATE(".adodb_date($this->fmtDate,$d).",'".$this->NLS_DATE_FORMAT."')";
  232. }
  233. // format and return date string in database timestamp format
  234. function DBTimeStamp($ts)
  235. {
  236. if (empty($ts) && $ts !== 0) return 'null';
  237. if (is_string($ts)) $ts = ADORecordSet::UnixTimeStamp($ts);
  238. return 'TO_DATE('.adodb_date($this->fmtTimeStamp,$ts).",'RRRR-MM-DD, HH:MI:SS AM')";
  239. }
  240. function RowLock($tables,$where)
  241. {
  242. if ($this->autoCommit) $this->BeginTrans();
  243. return $this->GetOne("select 1 as ignore from $tables where $where for update");
  244. }
  245. function &MetaTables($ttype=false,$showSchema=false,$mask=false)
  246. {
  247. if ($mask) {
  248. $save = $this->metaTablesSQL;
  249. $mask = $this->qstr(strtoupper($mask));
  250. $this->metaTablesSQL .= " AND table_name like $mask";
  251. }
  252. $ret =& ADOConnection::MetaTables($ttype,$showSchema);
  253. if ($mask) {
  254. $this->metaTablesSQL = $save;
  255. }
  256. return $ret;
  257. }
  258. // Mark Newnham
  259. function &MetaIndexes ($table, $primary = FALSE, $owner=false)
  260. {
  261. // save old fetch mode
  262. global $ADODB_FETCH_MODE;
  263. $save = $ADODB_FETCH_MODE;
  264. $ADODB_FETCH_MODE = ADODB_FETCH_NUM;
  265. if ($this->fetchMode !== FALSE) {
  266. $savem = $this->SetFetchMode(FALSE);
  267. }
  268. // get index details
  269. $table = strtoupper($table);
  270. // get Primary index
  271. $primary_key = '';
  272. $false = false;
  273. $rs = $this->Execute(sprintf("SELECT * FROM ALL_CONSTRAINTS WHERE UPPER(TABLE_NAME)='%s' AND CONSTRAINT_TYPE='P'",$table));
  274. if ($row = $rs->FetchRow())
  275. $primary_key = $row[1]; //constraint_name
  276. if ($primary==TRUE && $primary_key=='') {
  277. if (isset($savem))
  278. $this->SetFetchMode($savem);
  279. $ADODB_FETCH_MODE = $save;
  280. return $false; //There is no primary key
  281. }
  282. $rs = $this->Execute(sprintf("SELECT ALL_INDEXES.INDEX_NAME, ALL_INDEXES.UNIQUENESS, ALL_IND_COLUMNS.COLUMN_POSITION, ALL_IND_COLUMNS.COLUMN_NAME FROM ALL_INDEXES,ALL_IND_COLUMNS WHERE UPPER(ALL_INDEXES.TABLE_NAME)='%s' AND ALL_IND_COLUMNS.INDEX_NAME=ALL_INDEXES.INDEX_NAME",$table));
  283. if (!is_object($rs)) {
  284. if (isset($savem))
  285. $this->SetFetchMode($savem);
  286. $ADODB_FETCH_MODE = $save;
  287. return $false;
  288. }
  289. $indexes = array ();
  290. // parse index data into array
  291. while ($row = $rs->FetchRow()) {
  292. if ($primary && $row[0] != $primary_key) continue;
  293. if (!isset($indexes[$row[0]])) {
  294. $indexes[$row[0]] = array(
  295. 'unique' => ($row[1] == 'UNIQUE'),
  296. 'columns' => array()
  297. );
  298. }
  299. $indexes[$row[0]]['columns'][$row[2] - 1] = $row[3];
  300. }
  301. // sort columns by order in the index
  302. foreach ( array_keys ($indexes) as $index ) {
  303. ksort ($indexes[$index]['columns']);
  304. }
  305. if (isset($savem)) {
  306. $this->SetFetchMode($savem);
  307. $ADODB_FETCH_MODE = $save;
  308. }
  309. return $indexes;
  310. }
  311. function BeginTrans()
  312. {
  313. if ($this->transOff) return true;
  314. $this->transCnt += 1;
  315. $this->autoCommit = false;
  316. $this->_commit = OCI_DEFAULT;
  317. return true;
  318. }
  319. function CommitTrans($ok=true)
  320. {
  321. if ($this->transOff) return true;
  322. if (!$ok) return $this->RollbackTrans();
  323. if ($this->transCnt) $this->transCnt -= 1;
  324. $ret = OCIcommit($this->_connectionID);
  325. $this->_commit = OCI_COMMIT_ON_SUCCESS;
  326. $this->autoCommit = true;
  327. return $ret;
  328. }
  329. function RollbackTrans()
  330. {
  331. if ($this->transOff) return true;
  332. if ($this->transCnt) $this->transCnt -= 1;
  333. $ret = OCIrollback($this->_connectionID);
  334. $this->_commit = OCI_COMMIT_ON_SUCCESS;
  335. $this->autoCommit = true;
  336. return $ret;
  337. }
  338. function SelectDB($dbName)
  339. {
  340. return false;
  341. }
  342. function ErrorMsg()
  343. {
  344. if ($this->_errorMsg !== false) return $this->_errorMsg;
  345. if (is_resource($this->_stmt)) $arr = @OCIerror($this->_stmt);
  346. if (empty($arr)) {
  347. $arr = @OCIerror($this->_connectionID);
  348. if ($arr === false) $arr = @OCIError();
  349. if ($arr === false) return '';
  350. }
  351. $this->_errorMsg = $arr['message'];
  352. $this->_errorCode = $arr['code'];
  353. return $this->_errorMsg;
  354. }
  355. function ErrorNo()
  356. {
  357. if ($this->_errorCode !== false) return $this->_errorCode;
  358. if (is_resource($this->_stmt)) $arr = @OCIError($this->_stmt);
  359. if (empty($arr)) {
  360. $arr = @OCIError($this->_connectionID);
  361. if ($arr == false) $arr = @OCIError();
  362. if ($arr == false) return '';
  363. }
  364. $this->_errorMsg = $arr['message'];
  365. $this->_errorCode = $arr['code'];
  366. return $arr['code'];
  367. }
  368. // Format date column in sql string given an input format that understands Y M D
  369. function SQLDate($fmt, $col=false)
  370. {
  371. if (!$col) $col = $this->sysTimeStamp;
  372. $s = 'TO_CHAR('.$col.",'";
  373. $len = strlen($fmt);
  374. for ($i=0; $i < $len; $i++) {
  375. $ch = $fmt[$i];
  376. switch($ch) {
  377. case 'Y':
  378. case 'y':
  379. $s .= 'YYYY';
  380. break;
  381. case 'Q':
  382. case 'q':
  383. $s .= 'Q';
  384. break;
  385. case 'M':
  386. $s .= 'Mon';
  387. break;
  388. case 'm':
  389. $s .= 'MM';
  390. break;
  391. case 'D':
  392. case 'd':
  393. $s .= 'DD';
  394. break;
  395. case 'H':
  396. $s.= 'HH24';
  397. break;
  398. case 'h':
  399. $s .= 'HH';
  400. break;
  401. case 'i':
  402. $s .= 'MI';
  403. break;
  404. case 's':
  405. $s .= 'SS';
  406. break;
  407. case 'a':
  408. case 'A':
  409. $s .= 'AM';
  410. break;
  411. default:
  412. // handle escape characters...
  413. if ($ch == '\\') {
  414. $i++;
  415. $ch = substr($fmt,$i,1);
  416. }
  417. if (strpos('-/.:;, ',$ch) !== false) $s .= $ch;
  418. else $s .= '"'.$ch.'"';
  419. }
  420. }
  421. return $s. "')";
  422. }
  423. /*
  424. This algorithm makes use of
  425. a. FIRST_ROWS hint
  426. The FIRST_ROWS hint explicitly chooses the approach to optimize response time,
  427. that is, minimum resource usage to return the first row. Results will be returned
  428. as soon as they are identified.
  429. b. Uses rownum tricks to obtain only the required rows from a given offset.
  430. As this uses complicated sql statements, we only use this if the $offset >= 100.
  431. This idea by Tomas V V Cox.
  432. This implementation does not appear to work with oracle 8.0.5 or earlier. Comment
  433. out this function then, and the slower SelectLimit() in the base class will be used.
  434. */
  435. function &SelectLimit($sql,$nrows=-1,$offset=-1, $inputarr=false,$secs2cache=0)
  436. {
  437. // seems that oracle only supports 1 hint comment in 8i
  438. if ($this->firstrows) {
  439. if (strpos($sql,'/*+') !== false)
  440. $sql = str_replace('/*+ ','/*+FIRST_ROWS ',$sql);
  441. else
  442. $sql = preg_replace('/^[ \t\n]*select/i','SELECT /*+FIRST_ROWS*/',$sql);
  443. }
  444. if ($offset < $this->selectOffsetAlg1) {
  445. if ($nrows > 0) {
  446. if ($offset > 0) $nrows += $offset;
  447. //$inputarr['adodb_rownum'] = $nrows;
  448. if ($this->databaseType == 'oci8po') {
  449. $sql = "select * from (".$sql.") where rownum <= ?";
  450. } else {
  451. $sql = "select * from (".$sql.") where rownum <= :adodb_offset";
  452. }
  453. $inputarr['adodb_offset'] = $nrows;
  454. $nrows = -1;
  455. }
  456. // note that $nrows = 0 still has to work ==> no rows returned
  457. $rs =& ADOConnection::SelectLimit($sql,$nrows,$offset,$inputarr,$secs2cache);
  458. return $rs;
  459. } else {
  460. // Algorithm by Tomas V V Cox, from PEAR DB oci8.php
  461. // Let Oracle return the name of the columns
  462. $q_fields = "SELECT * FROM (".$sql.") WHERE NULL = NULL";
  463. $false = false;
  464. if (! $stmt_arr = $this->Prepare($q_fields)) {
  465. return $false;
  466. }
  467. $stmt = $stmt_arr[1];
  468. if (is_array($inputarr)) {
  469. foreach($inputarr as $k => $v) {
  470. if (is_array($v)) {
  471. if (sizeof($v) == 2) // suggested by g.giunta@libero.
  472. OCIBindByName($stmt,":$k",$inputarr[$k][0],$v[1]);
  473. else
  474. OCIBindByName($stmt,":$k",$inputarr[$k][0],$v[1],$v[2]);
  475. } else {
  476. $len = -1;
  477. if ($v === ' ') $len = 1;
  478. if (isset($bindarr)) { // is prepared sql, so no need to ocibindbyname again
  479. $bindarr[$k] = $v;
  480. } else { // dynamic sql, so rebind every time
  481. OCIBindByName($stmt,":$k",$inputarr[$k],$len);
  482. }
  483. }
  484. }
  485. }
  486. if (!OCIExecute($stmt, OCI_DEFAULT)) {
  487. OCIFreeStatement($stmt);
  488. return $false;
  489. }
  490. $ncols = OCINumCols($stmt);
  491. for ( $i = 1; $i <= $ncols; $i++ ) {
  492. $cols[] = '"'.OCIColumnName($stmt, $i).'"';
  493. }
  494. $result = false;
  495. OCIFreeStatement($stmt);
  496. $fields = implode(',', $cols);
  497. $nrows += $offset;
  498. $offset += 1; // in Oracle rownum starts at 1
  499. if ($this->databaseType == 'oci8po') {
  500. $sql = "SELECT $fields FROM".
  501. "(SELECT rownum as adodb_rownum, $fields FROM".
  502. " ($sql) WHERE rownum <= ?".
  503. ") WHERE adodb_rownum >= ?";
  504. } else {
  505. $sql = "SELECT $fields FROM".
  506. "(SELECT rownum as adodb_rownum, $fields FROM".
  507. " ($sql) WHERE rownum <= :adodb_nrows".
  508. ") WHERE adodb_rownum >= :adodb_offset";
  509. }
  510. $inputarr['adodb_nrows'] = $nrows;
  511. $inputarr['adodb_offset'] = $offset;
  512. if ($secs2cache>0) $rs =& $this->CacheExecute($secs2cache, $sql,$inputarr);
  513. else $rs =& $this->Execute($sql,$inputarr);
  514. return $rs;
  515. }
  516. }
  517. /**
  518. * Usage:
  519. * Store BLOBs and CLOBs
  520. *
  521. * Example: to store $var in a blob
  522. *
  523. * $conn->Execute('insert into TABLE (id,ablob) values(12,empty_blob())');
  524. * $conn->UpdateBlob('TABLE', 'ablob', $varHoldingBlob, 'ID=12', 'BLOB');
  525. *
  526. * $blobtype supports 'BLOB' and 'CLOB', but you need to change to 'empty_clob()'.
  527. *
  528. * to get length of LOB:
  529. * select DBMS_LOB.GETLENGTH(ablob) from TABLE
  530. *
  531. * If you are using CURSOR_SHARING = force, it appears this will case a segfault
  532. * under oracle 8.1.7.0. Run:
  533. * $db->Execute('ALTER SESSION SET CURSOR_SHARING=EXACT');
  534. * before UpdateBlob() then...
  535. */
  536. function UpdateBlob($table,$column,$val,$where,$blobtype='BLOB')
  537. {
  538. //if (strlen($val) < 4000) return $this->Execute("UPDATE $table SET $column=:blob WHERE $where",array('blob'=>$val)) != false;
  539. switch(strtoupper($blobtype)) {
  540. default: ADOConnection::outp("<b>UpdateBlob</b>: Unknown blobtype=$blobtype"); return false;
  541. case 'BLOB': $type = OCI_B_BLOB; break;
  542. case 'CLOB': $type = OCI_B_CLOB; break;
  543. }
  544. if ($this->databaseType == 'oci8po')
  545. $sql = "UPDATE $table set $column=EMPTY_{$blobtype}() WHERE $where RETURNING $column INTO ?";
  546. else
  547. $sql = "UPDATE $table set $column=EMPTY_{$blobtype}() WHERE $where RETURNING $column INTO :blob";
  548. $desc = OCINewDescriptor($this->_connectionID, OCI_D_LOB);
  549. $arr['blob'] = array($desc,-1,$type);
  550. if ($this->session_sharing_force_blob) $this->Execute('ALTER SESSION SET CURSOR_SHARING=EXACT');
  551. $commit = $this->autoCommit;
  552. if ($commit) $this->BeginTrans();
  553. $rs = $this->Execute($sql,$arr);
  554. if ($rez = !empty($rs)) $desc->save($val);
  555. $desc->free();
  556. if ($commit) $this->CommitTrans();
  557. if ($this->session_sharing_force_blob) $this->Execute('ALTER SESSION SET CURSOR_SHARING=FORCE');
  558. if ($rez) $rs->Close();
  559. return $rez;
  560. }
  561. /**
  562. * Usage: store file pointed to by $var in a blob
  563. */
  564. function UpdateBlobFile($table,$column,$val,$where,$blobtype='BLOB')
  565. {
  566. switch(strtoupper($blobtype)) {
  567. default: ADOConnection::outp( "<b>UpdateBlob</b>: Unknown blobtype=$blobtype"); return false;
  568. case 'BLOB': $type = OCI_B_BLOB; break;
  569. case 'CLOB': $type = OCI_B_CLOB; break;
  570. }
  571. if ($this->databaseType == 'oci8po')
  572. $sql = "UPDATE $table set $column=EMPTY_{$blobtype}() WHERE $where RETURNING $column INTO ?";
  573. else
  574. $sql = "UPDATE $table set $column=EMPTY_{$blobtype}() WHERE $where RETURNING $column INTO :blob";
  575. $desc = OCINewDescriptor($this->_connectionID, OCI_D_LOB);
  576. $arr['blob'] = array($desc,-1,$type);
  577. $this->BeginTrans();
  578. $rs = ADODB_oci8::Execute($sql,$arr);
  579. if ($rez = !empty($rs)) $desc->savefile($val);
  580. $desc->free();
  581. $this->CommitTrans();
  582. if ($rez) $rs->Close();
  583. return $rez;
  584. }
  585. /*
  586. Example of usage:
  587. $stmt = $this->Prepare('insert into emp (empno, ename) values (:empno, :ename)');
  588. */
  589. function Prepare($sql,$cursor=false)
  590. {
  591. static $BINDNUM = 0;
  592. $stmt = OCIParse($this->_connectionID,$sql);
  593. if (!$stmt) return false;
  594. $BINDNUM += 1;
  595. $sttype = @OCIStatementType($stmt);
  596. if ($sttype == 'BEGIN' || $sttype == 'DECLARE') {
  597. return array($sql,$stmt,0,$BINDNUM, ($cursor) ? OCINewCursor($this->_connectionID) : false);
  598. }
  599. return array($sql,$stmt,0,$BINDNUM);
  600. }
  601. /*
  602. Call an oracle stored procedure and returns a cursor variable as a recordset.
  603. Concept by Robert Tuttle robert@ud.com
  604. Example:
  605. Note: we return a cursor variable in :RS2
  606. $rs = $db->ExecuteCursor("BEGIN adodb.open_tab(:RS2); END;",'RS2');
  607. $rs = $db->ExecuteCursor(
  608. "BEGIN :RS2 = adodb.getdata(:VAR1); END;",
  609. 'RS2',
  610. array('VAR1' => 'Mr Bean'));
  611. */
  612. function &ExecuteCursor($sql,$cursorName='rs',$params=false)
  613. {
  614. if (is_array($sql)) $stmt = $sql;
  615. else $stmt = ADODB_oci8::Prepare($sql,true); # true to allocate OCINewCursor
  616. if (is_array($stmt) && sizeof($stmt) >= 5) {
  617. $hasref = true;
  618. $this->Parameter($stmt, $ignoreCur, $cursorName, false, -1, OCI_B_CURSOR);
  619. if ($params) {
  620. foreach($params as $k => $v) {
  621. $this->Parameter($stmt,$params[$k], $k);
  622. }
  623. }
  624. } else
  625. $hasref = false;
  626. $rs =& $this->Execute($stmt);
  627. if ($rs->databaseType == 'array') OCIFreeCursor($stmt[4]);
  628. else if ($hasref) $rs->_refcursor = $stmt[4];
  629. return $rs;
  630. }
  631. /*
  632. Bind a variable -- very, very fast for executing repeated statements in oracle.
  633. Better than using
  634. for ($i = 0; $i < $max; $i++) {
  635. $p1 = ?; $p2 = ?; $p3 = ?;
  636. $this->Execute("insert into table (col0, col1, col2) values (:0, :1, :2)",
  637. array($p1,$p2,$p3));
  638. }
  639. Usage:
  640. $stmt = $DB->Prepare("insert into table (col0, col1, col2) values (:0, :1, :2)");
  641. $DB->Bind($stmt, $p1);
  642. $DB->Bind($stmt, $p2);
  643. $DB->Bind($stmt, $p3);
  644. for ($i = 0; $i < $max; $i++) {
  645. $p1 = ?; $p2 = ?; $p3 = ?;
  646. $DB->Execute($stmt);
  647. }
  648. Some timings:
  649. ** Test table has 3 cols, and 1 index. Test to insert 1000 records
  650. Time 0.6081s (1644.60 inserts/sec) with direct OCIParse/OCIExecute
  651. Time 0.6341s (1577.16 inserts/sec) with ADOdb Prepare/Bind/Execute
  652. Time 1.5533s ( 643.77 inserts/sec) with pure SQL using Execute
  653. Now if PHP only had batch/bulk updating like Java or PL/SQL...
  654. Note that the order of parameters differs from OCIBindByName,
  655. because we default the names to :0, :1, :2
  656. */
  657. function Bind(&$stmt,&$var,$size=4000,$type=false,$name=false,$isOutput=false)
  658. {
  659. if (!is_array($stmt)) return false;
  660. if (($type == OCI_B_CURSOR) && sizeof($stmt) >= 5) {
  661. return OCIBindByName($stmt[1],":".$name,$stmt[4],$size,$type);
  662. }
  663. if ($name == false) {
  664. if ($type !== false) $rez = OCIBindByName($stmt[1],":".$stmt[2],$var,$size,$type);
  665. else $rez = OCIBindByName($stmt[1],":".$stmt[2],$var,$size); // +1 byte for null terminator
  666. $stmt[2] += 1;
  667. } else if (oci_lob_desc($type)) {
  668. if ($this->debug) {
  669. ADOConnection::outp("<b>Bind</b>: name = $name");
  670. }
  671. //we have to create a new Descriptor here
  672. $numlob = count($this->_refLOBs);
  673. $this->_refLOBs[$numlob]['LOB'] = OCINewDescriptor($this->_connectionID, oci_lob_desc($type));
  674. $this->_refLOBs[$numlob]['TYPE'] = $isOutput;
  675. $tmp = &$this->_refLOBs[$numlob]['LOB'];
  676. $rez = OCIBindByName($stmt[1], ":".$name, $tmp, -1, $type);
  677. if ($this->debug) {
  678. ADOConnection::outp("<b>Bind</b>: descriptor has been allocated, var (".$name.") binded");
  679. }
  680. // if type is input then write data to lob now
  681. if ($isOutput == false) {
  682. $var = $this->BlobEncode($var);
  683. $tmp->WriteTemporary($var);
  684. $this->_refLOBs[$numlob]['VAR'] = &$var;
  685. if ($this->debug) {
  686. ADOConnection::outp("<b>Bind</b>: LOB has been written to temp");
  687. }
  688. } else {
  689. $this->_refLOBs[$numlob]['VAR'] = &$var;
  690. }
  691. $rez = $tmp;
  692. } else {
  693. if ($this->debug)
  694. ADOConnection::outp("<b>Bind</b>: name = $name");
  695. if ($type !== false) $rez = OCIBindByName($stmt[1],":".$name,$var,$size,$type);
  696. else $rez = OCIBindByName($stmt[1],":".$name,$var,$size); // +1 byte for null terminator
  697. }
  698. return $rez;
  699. }
  700. function Param($name,$type=false)
  701. {
  702. return ':'.$name;
  703. }
  704. /*
  705. Usage:
  706. $stmt = $db->Prepare('select * from table where id =:myid and group=:group');
  707. $db->Parameter($stmt,$id,'myid');
  708. $db->Parameter($stmt,$group,'group');
  709. $db->Execute($stmt);
  710. @param $stmt Statement returned by Prepare() or PrepareSP().
  711. @param $var PHP variable to bind to
  712. @param $name Name of stored procedure variable name to bind to.
  713. @param [$isOutput] Indicates direction of parameter 0/false=IN 1=OUT 2= IN/OUT. This is ignored in oci8.
  714. @param [$maxLen] Holds an maximum length of the variable.
  715. @param [$type] The data type of $var. Legal values depend on driver.
  716. See OCIBindByName documentation at php.net.
  717. */
  718. function Parameter(&$stmt,&$var,$name,$isOutput=false,$maxLen=4000,$type=false)
  719. {
  720. if ($this->debug) {
  721. $prefix = ($isOutput) ? 'Out' : 'In';
  722. $ztype = (empty($type)) ? 'false' : $type;
  723. ADOConnection::outp( "{$prefix}Parameter(\$stmt, \$php_var='$var', \$name='$name', \$maxLen=$maxLen, \$type=$ztype);");
  724. }
  725. return $this->Bind($stmt,$var,$maxLen,$type,$name,$isOutput);
  726. }
  727. /*
  728. returns query ID if successful, otherwise false
  729. this version supports:
  730. 1. $db->execute('select * from table');
  731. 2. $db->prepare('insert into table (a,b,c) values (:0,:1,:2)');
  732. $db->execute($prepared_statement, array(1,2,3));
  733. 3. $db->execute('insert into table (a,b,c) values (:a,:b,:c)',array('a'=>1,'b'=>2,'c'=>3));
  734. 4. $db->prepare('insert into table (a,b,c) values (:0,:1,:2)');
  735. $db->bind($stmt,1); $db->bind($stmt,2); $db->bind($stmt,3);
  736. $db->execute($stmt);
  737. */
  738. function _query($sql,$inputarr)
  739. {
  740. if (is_array($sql)) { // is prepared sql
  741. $stmt = $sql[1];
  742. // we try to bind to permanent array, so that OCIBindByName is persistent
  743. // and carried out once only - note that max array element size is 4000 chars
  744. if (is_array($inputarr)) {
  745. $bindpos = $sql[3];
  746. if (isset($this->_bind[$bindpos])) {
  747. // all tied up already
  748. $bindarr = &$this->_bind[$bindpos];
  749. } else {
  750. // one statement to bind them all
  751. $bindarr = array();
  752. foreach($inputarr as $k => $v) {
  753. $bindarr[$k] = $v;
  754. OCIBindByName($stmt,":$k",$bindarr[$k],is_string($v) && strlen($v)>4000 ? -1 : 4000);
  755. }
  756. $this->_bind[$bindpos] = &$bindarr;
  757. }
  758. }
  759. } else {
  760. $stmt=OCIParse($this->_connectionID,$sql);
  761. }
  762. $this->_stmt = $stmt;
  763. if (!$stmt) return false;
  764. if (defined('ADODB_PREFETCH_ROWS')) @OCISetPrefetch($stmt,ADODB_PREFETCH_ROWS);
  765. if (is_array($inputarr)) {
  766. foreach($inputarr as $k => $v) {
  767. if (is_array($v)) {
  768. if (sizeof($v) == 2) // suggested by g.giunta@libero.
  769. OCIBindByName($stmt,":$k",$inputarr[$k][0],$v[1]);
  770. else
  771. OCIBindByName($stmt,":$k",$inputarr[$k][0],$v[1],$v[2]);
  772. if ($this->debug==99) echo "name=:$k",' var='.$inputarr[$k][0],' len='.$v[1],' type='.$v[2],'<br>';
  773. } else {
  774. $len = -1;
  775. if ($v === ' ') $len = 1;
  776. if (isset($bindarr)) { // is prepared sql, so no need to ocibindbyname again
  777. $bindarr[$k] = $v;
  778. } else { // dynamic sql, so rebind every time
  779. OCIBindByName($stmt,":$k",$inputarr[$k],$len);
  780. }
  781. }
  782. }
  783. }
  784. $this->_errorMsg = false;
  785. $this->_errorCode = false;
  786. if (OCIExecute($stmt,$this->_commit)) {
  787. //OCIInternalDebug(1);
  788. if (count($this -> _refLOBs) > 0) {
  789. foreach ($this -> _refLOBs as $key => $value) {
  790. if ($this -> _refLOBs[$key]['TYPE'] == true) {
  791. $tmp = $this -> _refLOBs[$key]['LOB'] -> load();
  792. if ($this -> debug) {
  793. ADOConnection::outp("<b>OUT LOB</b>: LOB has been loaded. <br>");
  794. }
  795. //$_GLOBALS[$this -> _refLOBs[$key]['VAR']] = $tmp;
  796. $this -> _refLOBs[$key]['VAR'] = $tmp;
  797. } else {
  798. $this->_refLOBs[$key]['LOB']->save($this->_refLOBs[$key]['VAR']);
  799. $this -> _refLOBs[$key]['LOB']->free();
  800. unset($this -> _refLOBs[$key]);
  801. if ($this->debug) {
  802. ADOConnection::outp("<b>IN LOB</b>: LOB has been saved. <br>");
  803. }
  804. }
  805. }
  806. }
  807. switch (@OCIStatementType($stmt)) {
  808. case "SELECT":
  809. return $stmt;
  810. case 'DECLARE':
  811. case "BEGIN":
  812. if (is_array($sql) && !empty($sql[4])) {
  813. $cursor = $sql[4];
  814. if (is_resource($cursor)) {
  815. $ok = OCIExecute($cursor);
  816. return $cursor;
  817. }
  818. return $stmt;
  819. } else {
  820. if (is_resource($stmt)) {
  821. OCIFreeStatement($stmt);
  822. return true;
  823. }
  824. return $stmt;
  825. }
  826. break;
  827. default :
  828. // ociclose -- no because it could be used in a LOB?
  829. return true;
  830. }
  831. }
  832. return false;
  833. }
  834. // returns true or false
  835. function _close()
  836. {
  837. if (!$this->_connectionID) return;
  838. if (!$this->autoCommit) OCIRollback($this->_connectionID);
  839. if (count($this -> _refLOBs) > 0) {
  840. foreach ($this -> _refLOBs as $key => $value) {
  841. $this -> _refLOBs[$key] -> free();
  842. unset($this -> _refLOBs[$key]);
  843. }
  844. }
  845. OCILogoff($this->_connectionID);
  846. $this->_stmt = false;
  847. $this->_connectionID = false;
  848. }
  849. function MetaPrimaryKeys($table, $owner=false,$internalKey=false)
  850. {
  851. if ($internalKey) return array('ROWID');
  852. // tested with oracle 8.1.7
  853. $table = strtoupper($table);
  854. if ($owner) {
  855. $owner_clause = "AND ((a.OWNER = b.OWNER) AND (a.OWNER = UPPER('$owner')))";
  856. $ptab = 'ALL_';
  857. } else {
  858. $owner_clause = '';
  859. $ptab = 'USER_';
  860. }
  861. $sql = "
  862. SELECT /*+ RULE */ distinct b.column_name
  863. FROM {$ptab}CONSTRAINTS a
  864. , {$ptab}CONS_COLUMNS b
  865. WHERE ( UPPER(b.table_name) = ('$table'))
  866. AND (UPPER(a.table_name) = ('$table') and a.constraint_type = 'P')
  867. $owner_clause
  868. AND (a.constraint_name = b.constraint_name)";
  869. $rs = $this->Execute($sql);
  870. if ($rs && !$rs->EOF) {
  871. $arr =& $rs->GetArray();
  872. $a = array();
  873. foreach($arr as $v) {
  874. $a[] = reset($v);
  875. }
  876. return $a;
  877. }
  878. else return false;
  879. }
  880. // http://gis.mit.edu/classes/11.521/sqlnotes/referential_integrity.html
  881. function MetaForeignKeys($table, $owner=false)
  882. {
  883. global $ADODB_FETCH_MODE;
  884. $save = $ADODB_FETCH_MODE;
  885. $ADODB_FETCH_MODE = ADODB_FETCH_NUM;
  886. $table = $this->qstr(strtoupper($table));
  887. if (!$owner) {
  888. $owner = $this->user;
  889. $tabp = 'user_';
  890. } else
  891. $tabp = 'all_';
  892. $owner = ' and owner='.$this->qstr(strtoupper($owner));
  893. $sql =
  894. "select constraint_name,r_owner,r_constraint_name
  895. from {$tabp}constraints
  896. where constraint_type = 'R' and table_name = $table $owner";
  897. $constraints =& $this->GetArray($sql);
  898. $arr = false;
  899. foreach($constraints as $constr) {
  900. $cons = $this->qstr($constr[0]);
  901. $rowner = $this->qstr($constr[1]);
  902. $rcons = $this->qstr($constr[2]);
  903. $cols = $this->GetArray("select column_name from {$tabp}cons_columns where constraint_name=$cons $owner order by position");
  904. $tabcol = $this->GetArray("select table_name,column_name from {$tabp}cons_columns where owner=$rowner and constraint_name=$rcons order by position");
  905. if ($cols && $tabcol)
  906. for ($i=0, $max=sizeof($cols); $i < $max; $i++) {
  907. $arr[$tabcol[$i][0]] = $cols[$i][0].'='.$tabcol[$i][1];
  908. }
  909. }
  910. $ADODB_FETCH_MODE = $save;
  911. return $arr;
  912. }
  913. function CharMax()
  914. {
  915. return 4000;
  916. }
  917. function TextMax()
  918. {
  919. return 4000;
  920. }
  921. /**
  922. * Quotes a string.
  923. * An example is $db->qstr("Don't bother",magic_quotes_runtime());
  924. *
  925. * @param s the string to quote
  926. * @param [magic_quotes] if $s is GET/POST var, set to get_magic_quotes_gpc().
  927. * This undoes the stupidity of magic quotes for GPC.
  928. *
  929. * @return quoted string to be sent back to database
  930. */
  931. function qstr($s,$magic_quotes=false)
  932. {
  933. $nofixquotes=false;
  934. if ($this->noNullStrings && strlen($s)==0)$s = ' ';
  935. if (!$magic_quotes) {
  936. if ($this->replaceQuote[0] == '\\'){
  937. $s = str_replace('\\','\\\\',$s);
  938. }
  939. return "'".str_replace("'",$this->replaceQuote,$s)."'";
  940. }
  941. // undo magic quotes for "
  942. $s = str_replace('\\"','"',$s);
  943. $s = str_replace('\\\\','\\',$s);
  944. return "'".str_replace("\\'",$this->replaceQuote,$s)."'";
  945. }
  946. }
  947. /*--------------------------------------------------------------------------------------
  948. Class Name: Recordset
  949. --------------------------------------------------------------------------------------*/
  950. class ADORecordset_oci8 extends ADORecordSet {
  951. var $databaseType = 'oci8';
  952. var $bind=false;
  953. var $_fieldobjs;
  954. //var $_arr = false;
  955. function ADORecordset_oci8($queryID,$mode=false)
  956. {
  957. if ($mode === false) {
  958. global $ADODB_FETCH_MODE;
  959. $mode = $ADODB_FETCH_MODE;
  960. }
  961. switch ($mode)
  962. {
  963. case ADODB_FETCH_ASSOC:$this->fetchMode = OCI_ASSOC+OCI_RETURN_NULLS+OCI_RETURN_LOBS; break;
  964. case ADODB_FETCH_DEFAULT:
  965. case ADODB_FETCH_BOTH:$this->fetchMode = OCI_NUM+OCI_ASSOC+OCI_RETURN_NULLS+OCI_RETURN_LOBS; break;
  966. case ADODB_FETCH_NUM:
  967. default:
  968. $this->fetchMode = OCI_NUM+OCI_RETURN_NULLS+OCI_RETURN_LOBS; break;
  969. }
  970. $this->adodbFetchMode = $mode;
  971. $this->_queryID = $queryID;
  972. }
  973. function Init()
  974. {
  975. if ($this->_inited) return;
  976. $this->_inited = true;
  977. if ($this->_queryID) {
  978. $this->_currentRow = 0;
  979. @$this->_initrs();
  980. $this->EOF = !$this->_fetch();
  981. /*
  982. // based on idea by Gaetano Giunta to detect unusual oracle errors
  983. // see http://phplens.com/lens/lensforum/msgs.php?id=6771
  984. $err = OCIError($this->_queryID);
  985. if ($err && $this->connection->debug) ADOConnection::outp($err);
  986. */
  987. if (!is_array($this->fields)) {
  988. $this->_numOfRows = 0;
  989. $this->fields = array();
  990. }
  991. } else {
  992. $this->fields = array();
  993. $this->_numOfRows = 0;
  994. $this->_numOfFields = 0;
  995. $this->EOF = true;
  996. }
  997. }
  998. function _initrs()
  999. {
  1000. $this->_numOfRows = -1;
  1001. $this->_numOfFields = OCInumcols($this->_queryID);
  1002. if ($this->_numOfFields>0) {
  1003. $this->_fieldobjs = array();
  1004. $max = $this->_numOfFields;
  1005. for ($i=0;$i<$max; $i++) $this->_fieldobjs[] = $this->_FetchField($i);
  1006. }
  1007. }
  1008. /* Returns: an object containing field information.
  1009. Get column information in the Recordset object. fetchField() can be used in order to obtain information about
  1010. fields in a certain query result. If the field offset isn't specified, the next field that wasn't yet retrieved by
  1011. fetchField() is retrieved. */
  1012. function &_FetchField($fieldOffset = -1)
  1013. {
  1014. $fld = new ADOFieldObject;
  1015. $fieldOffset += 1;
  1016. $fld->name =OCIcolumnname($this->_queryID, $fieldOffset);
  1017. $fld->type = OCIcolumntype($this->_queryID, $fieldOffset);
  1018. $fld->max_length = OCIcolumnsize($this->_queryID, $fieldOffset);
  1019. if ($fld->type == 'NUMBER') {
  1020. $p = OCIColumnPrecision($this->_queryID, $fieldOffset);
  1021. $sc = OCIColumnScale($this->_queryID, $fieldOffset);
  1022. if ($p != 0 && $sc == 0) $fld->type = 'INT';
  1023. //echo " $this->name ($p.$sc) ";
  1024. }
  1025. return $fld;
  1026. }
  1027. /* For some reason, OCIcolumnname fails when called after _initrs() so we cache it */
  1028. function &FetchField($fieldOffset = -1)
  1029. {
  1030. return $this->_fieldobjs[$fieldOffset];
  1031. }
  1032. /*
  1033. // 10% speedup to move MoveNext to child class
  1034. function _MoveNext()
  1035. {
  1036. //global $ADODB_EXTENSION;if ($ADODB_EXTENSION) return @adodb_movenext($this);
  1037. if ($this->EOF) return false;
  1038. $this->_currentRow++;
  1039. if(@OCIfetchinto($this->_queryID,$this->fields,$this->fetchMode))
  1040. return true;
  1041. $this->EOF = true;
  1042. return false;
  1043. } */
  1044. function MoveNext()
  1045. {
  1046. if (@OCIfetchinto($this->_queryID,$this->fields,$this->fetchMode)) {
  1047. $this->_currentRow += 1;
  1048. return true;
  1049. }
  1050. if (!$this->EOF) {
  1051. $this->_currentRow += 1;
  1052. $this->EOF = true;
  1053. }
  1054. return false;
  1055. }
  1056. /* Optimize SelectLimit() by using OCIFetch() instead of OCIFetchInto() */
  1057. function &GetArrayLimit($nrows,$offset=-1)
  1058. {
  1059. if ($offset <= 0) {
  1060. $arr =& $this->GetArray($nrows);
  1061. return $arr;
  1062. }
  1063. for ($i=1; $i < $offset; $i++)
  1064. if (!@OCIFetch($this->_queryID)) return array();
  1065. if (!@OCIfetchinto($this->_queryID,$this->fields,$this->fetchMode)) return array();
  1066. $results = array();
  1067. $cnt = 0;
  1068. while (!$this->EOF && $nrows != $cnt) {
  1069. $results[$cnt++] = $this->fields;
  1070. $this->MoveNext();
  1071. }
  1072. return $results;
  1073. }
  1074. /* Use associative array to get fields array */
  1075. function Fields($colname)
  1076. {
  1077. if (!$this->bind) {
  1078. $this->bind = array();
  1079. for ($i=0; $i < $this->_numOfFields; $i++) {
  1080. $o = $this->FetchField($i);
  1081. $this->bind[strtoupper($o->name)] = $i;
  1082. }
  1083. }
  1084. return $this->fields[$this->bind[strtoupper($colname)]];
  1085. }
  1086. function _seek($row)
  1087. {
  1088. return false;
  1089. }
  1090. function _fetch()
  1091. {
  1092. return @OCIfetchinto($this->_queryID,$this->fields,$this->fetchMode);
  1093. }
  1094. /* close() only needs to be called if you are worried about using too much memory while your script
  1095. is running. All associated result memory for the specified result identifier will automatically be freed. */
  1096. function _close()
  1097. {
  1098. if ($this->connection->_stmt === $this->_queryID) $this->connection->_stmt = false;
  1099. if (!empty($this->_refcursor)) {
  1100. OCIFreeCursor($this->_refcursor);
  1101. $this->_refcursor = false;
  1102. }
  1103. @OCIFreeStatement($this->_queryID);
  1104. $this->_queryID = false;
  1105. }
  1106. function MetaType($t,$len=-1)
  1107. {
  1108. if (is_object($t)) {
  1109. $fieldobj = $t;
  1110. $t = $fieldobj->type;
  1111. $len = $fieldobj->max_length;
  1112. }
  1113. switch (strtoupper($t)) {
  1114. case 'VARCHAR':
  1115. case 'VARCHAR2':
  1116. case 'CHAR':
  1117. case 'VARBINARY':
  1118. case 'BINARY':
  1119. case 'NCHAR':
  1120. case 'NVARCHAR':
  1121. case 'NVARCHAR2':
  1122. if (isset($this) && $len <= $this->blobSize) return 'C';
  1123. case 'NCLOB':
  1124. case 'LONG':
  1125. case 'LONG VARCHAR':
  1126. case 'CLOB':
  1127. return 'X';
  1128. case 'LONG RAW':
  1129. case 'LONG VARBINARY':
  1130. case 'BLOB':
  1131. return 'B';
  1132. case 'DATE':
  1133. return ($this->connection->datetime) ? 'T' : 'D';
  1134. case 'TIMESTAMP': return 'T';
  1135. case 'INT':
  1136. case 'SMALLINT':
  1137. case 'INTEGER':
  1138. return 'I';
  1139. default: return 'N';
  1140. }
  1141. }
  1142. }
  1143. class ADORecordSet_ext_oci8 extends ADORecordSet_oci8 {
  1144. function ADORecordSet_ext_oci8($queryID,$mode=false)
  1145. {
  1146. if ($mode === false) {
  1147. global $ADODB_FETCH_MODE;
  1148. $mode = $ADODB_FETCH_MODE;
  1149. }
  1150. switch ($mode)
  1151. {
  1152. case ADODB_FETCH_ASSOC:$this->fetchMode = OCI_ASSOC+OCI_RETURN_NULLS+OCI_RETURN_LOBS; break;
  1153. case ADODB_FETCH_DEFAULT:
  1154. case ADODB_FETCH_BOTH:$this->fetchMode = OCI_NUM+OCI_ASSOC+OCI_RETURN_NULLS+OCI_RETURN_LOBS; break;
  1155. case ADODB_FETCH_NUM:
  1156. default: $this->fetchMode = OCI_NUM+OCI_RETURN_NULLS+OCI_RETURN_LOBS; break;
  1157. }
  1158. $this->adodbFetchMode = $mode;
  1159. $this->_queryID = $queryID;
  1160. }
  1161. function MoveNext()
  1162. {
  1163. return adodb_movenext($this);
  1164. }
  1165. }
  1166. ?>