adodb-ibase.inc.php 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855
  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. Interbase data driver. Requires interbase client. Works on Windows and Unix.
  9. 3 Jan 2002 -- suggestions by Hans-Peter Oeri <kampfcaspar75@oeri.ch>
  10. changed transaction handling and added experimental blob stuff
  11. Docs to interbase at the website
  12. http://www.synectics.co.za/php3/tutorial/IB_PHP3_API.html
  13. To use gen_id(), see
  14. http://www.volny.cz/iprenosil/interbase/ip_ib_code.htm#_code_creategen
  15. $rs = $conn->Execute('select gen_id(adodb,1) from rdb$database');
  16. $id = $rs->fields[0];
  17. $conn->Execute("insert into table (id, col1,...) values ($id, $val1,...)");
  18. */
  19. // security - hide paths
  20. if (!defined('ADODB_DIR')) die();
  21. class ADODB_ibase extends ADOConnection {
  22. var $databaseType = "ibase";
  23. var $dataProvider = "ibase";
  24. var $replaceQuote = "''"; // string to use to replace quotes
  25. var $ibase_datefmt = '%Y-%m-%d'; // For hours,mins,secs change to '%Y-%m-%d %H:%M:%S';
  26. var $fmtDate = "'Y-m-d'";
  27. var $ibase_timestampfmt = "%Y-%m-%d %H:%M:%S";
  28. var $ibase_timefmt = "%H:%M:%S";
  29. var $fmtTimeStamp = "'Y-m-d, H:i:s'";
  30. var $concat_operator='||';
  31. var $_transactionID;
  32. var $metaTablesSQL = "select rdb\$relation_name from rdb\$relations where rdb\$relation_name not like 'RDB\$%'";
  33. //OPN STUFF start
  34. var $metaColumnsSQL = "select a.rdb\$field_name, a.rdb\$null_flag, a.rdb\$default_source, b.rdb\$field_length, b.rdb\$field_scale, b.rdb\$field_sub_type, b.rdb\$field_precision, b.rdb\$field_type from rdb\$relation_fields a, rdb\$fields b where a.rdb\$field_source = b.rdb\$field_name and a.rdb\$relation_name = '%s' order by a.rdb\$field_position asc";
  35. //OPN STUFF end
  36. var $ibasetrans;
  37. var $hasGenID = true;
  38. var $_bindInputArray = true;
  39. var $buffers = 0;
  40. var $dialect = 1;
  41. var $sysDate = "cast('TODAY' as timestamp)";
  42. var $sysTimeStamp = "cast('NOW' as timestamp)";
  43. var $ansiOuter = true;
  44. var $hasAffectedRows = false;
  45. var $poorAffectedRows = true;
  46. var $blobEncodeType = 'C';
  47. function ADODB_ibase()
  48. {
  49. if (defined('IBASE_DEFAULT')) $this->ibasetrans = IBASE_DEFAULT;
  50. }
  51. // returns true or false
  52. function _connect($argHostname, $argUsername, $argPassword, $argDatabasename,$persist=false)
  53. {
  54. if (!function_exists('ibase_pconnect')) return null;
  55. if ($argDatabasename) $argHostname .= ':'.$argDatabasename;
  56. $fn = ($persist) ? 'ibase_pconnect':'ibase_connect';
  57. $this->_connectionID = $fn($argHostname,$argUsername,$argPassword,
  58. $this->charSet,$this->buffers,$this->dialect);
  59. if ($this->dialect != 1) { // http://www.ibphoenix.com/ibp_60_del_id_ds.html
  60. $this->replaceQuote = "''";
  61. }
  62. if ($this->_connectionID === false) {
  63. $this->_handleerror();
  64. return false;
  65. }
  66. // PHP5 change.
  67. if (function_exists('ibase_timefmt')) {
  68. ibase_timefmt($this->ibase_datefmt,IBASE_DATE );
  69. if ($this->dialect == 1) ibase_timefmt($this->ibase_datefmt,IBASE_TIMESTAMP );
  70. else ibase_timefmt($this->ibase_timestampfmt,IBASE_TIMESTAMP );
  71. ibase_timefmt($this->ibase_timefmt,IBASE_TIME );
  72. } else {
  73. ini_set("ibase.timestampformat", $this->ibase_timestampfmt);
  74. ini_set("ibase.dateformat", $this->ibase_datefmt);
  75. ini_set("ibase.timeformat", $this->ibase_timefmt);
  76. }
  77. return true;
  78. }
  79. // returns true or false
  80. function _pconnect($argHostname, $argUsername, $argPassword, $argDatabasename)
  81. {
  82. return $this->_connect($argHostname, $argUsername, $argPassword, $argDatabasename,true);
  83. }
  84. function MetaPrimaryKeys($table,$owner_notused=false,$internalKey=false)
  85. {
  86. if ($internalKey) return array('RDB$DB_KEY');
  87. $table = strtoupper($table);
  88. $sql = 'SELECT S.RDB$FIELD_NAME AFIELDNAME
  89. FROM RDB$INDICES I JOIN RDB$INDEX_SEGMENTS S ON I.RDB$INDEX_NAME=S.RDB$INDEX_NAME
  90. WHERE I.RDB$RELATION_NAME=\''.$table.'\' and I.RDB$INDEX_NAME like \'RDB$PRIMARY%\'
  91. ORDER BY I.RDB$INDEX_NAME,S.RDB$FIELD_POSITION';
  92. $a = $this->GetCol($sql,false,true);
  93. if ($a && sizeof($a)>0) return $a;
  94. return false;
  95. }
  96. function ServerInfo()
  97. {
  98. $arr['dialect'] = $this->dialect;
  99. switch($arr['dialect']) {
  100. case '':
  101. case '1': $s = 'Interbase 5.5 or earlier'; break;
  102. case '2': $s = 'Interbase 5.6'; break;
  103. default:
  104. case '3': $s = 'Interbase 6.0'; break;
  105. }
  106. $arr['version'] = ADOConnection::_findvers($s);
  107. $arr['description'] = $s;
  108. return $arr;
  109. }
  110. function BeginTrans()
  111. {
  112. if ($this->transOff) return true;
  113. $this->transCnt += 1;
  114. $this->autoCommit = false;
  115. $this->_transactionID = $this->_connectionID;//ibase_trans($this->ibasetrans, $this->_connectionID);
  116. return $this->_transactionID;
  117. }
  118. function CommitTrans($ok=true)
  119. {
  120. if (!$ok) return $this->RollbackTrans();
  121. if ($this->transOff) return true;
  122. if ($this->transCnt) $this->transCnt -= 1;
  123. $ret = false;
  124. $this->autoCommit = true;
  125. if ($this->_transactionID) {
  126. //print ' commit ';
  127. $ret = ibase_commit($this->_transactionID);
  128. }
  129. $this->_transactionID = false;
  130. return $ret;
  131. }
  132. // there are some compat problems with ADODB_COUNTRECS=false and $this->_logsql currently.
  133. // it appears that ibase extension cannot support multiple concurrent queryid's
  134. function &_Execute($sql,$inputarr=false)
  135. {
  136. global $ADODB_COUNTRECS;
  137. if ($this->_logsql) {
  138. $savecrecs = $ADODB_COUNTRECS;
  139. $ADODB_COUNTRECS = true; // force countrecs
  140. $ret =& ADOConnection::_Execute($sql,$inputarr);
  141. $ADODB_COUNTRECS = $savecrecs;
  142. } else {
  143. $ret =& ADOConnection::_Execute($sql,$inputarr);
  144. }
  145. return $ret;
  146. }
  147. function RollbackTrans()
  148. {
  149. if ($this->transOff) return true;
  150. if ($this->transCnt) $this->transCnt -= 1;
  151. $ret = false;
  152. $this->autoCommit = true;
  153. if ($this->_transactionID)
  154. $ret = ibase_rollback($this->_transactionID);
  155. $this->_transactionID = false;
  156. return $ret;
  157. }
  158. function &MetaIndexes ($table, $primary = FALSE, $owner=false)
  159. {
  160. // save old fetch mode
  161. global $ADODB_FETCH_MODE;
  162. $save = $ADODB_FETCH_MODE;
  163. $ADODB_FETCH_MODE = ADODB_FETCH_NUM;
  164. if ($this->fetchMode !== FALSE) {
  165. $savem = $this->SetFetchMode(FALSE);
  166. }
  167. $table = strtoupper($table);
  168. $sql = "SELECT * FROM RDB\$INDICES WHERE RDB\$RELATION_NAME = '".$table."'";
  169. if (!$primary) {
  170. $sql .= " AND RDB\$INDEX_NAME NOT LIKE 'RDB\$%'";
  171. } else {
  172. $sql .= " AND RDB\$INDEX_NAME NOT LIKE 'RDB\$FOREIGN%'";
  173. }
  174. // get index details
  175. $rs = $this->Execute($sql);
  176. if (!is_object($rs)) {
  177. // restore fetchmode
  178. if (isset($savem)) {
  179. $this->SetFetchMode($savem);
  180. }
  181. $ADODB_FETCH_MODE = $save;
  182. return FALSE;
  183. }
  184. $indexes = array ();
  185. while ($row = $rs->FetchRow()) {
  186. $index = $row[0];
  187. if (!isset($indexes[$index])) {
  188. if (is_null($row[3])) {$row[3] = 0;}
  189. $indexes[$index] = array(
  190. 'unique' => ($row[3] == 1),
  191. 'columns' => array()
  192. );
  193. }
  194. $sql = "SELECT * FROM RDB\$INDEX_SEGMENTS WHERE RDB\$INDEX_NAME = '".$name."' ORDER BY RDB\$FIELD_POSITION ASC";
  195. $rs1 = $this->Execute($sql);
  196. while ($row1 = $rs1->FetchRow()) {
  197. $indexes[$index]['columns'][$row1[2]] = $row1[1];
  198. }
  199. }
  200. // restore fetchmode
  201. if (isset($savem)) {
  202. $this->SetFetchMode($savem);
  203. }
  204. $ADODB_FETCH_MODE = $save;
  205. return $indexes;
  206. }
  207. // See http://community.borland.com/article/0,1410,25844,00.html
  208. function RowLock($tables,$where,$col)
  209. {
  210. if ($this->autoCommit) $this->BeginTrans();
  211. $this->Execute("UPDATE $table SET $col=$col WHERE $where "); // is this correct - jlim?
  212. return 1;
  213. }
  214. function CreateSequence($seqname,$startID=1)
  215. {
  216. $ok = $this->Execute(("INSERT INTO RDB\$GENERATORS (RDB\$GENERATOR_NAME) VALUES (UPPER('$seqname'))" ));
  217. if (!$ok) return false;
  218. return $this->Execute("SET GENERATOR $seqname TO ".($startID-1).';');
  219. }
  220. function DropSequence($seqname)
  221. {
  222. $seqname = strtoupper($seqname);
  223. $this->Execute("delete from RDB\$GENERATORS where RDB\$GENERATOR_NAME='$seqname'");
  224. }
  225. function GenID($seqname='adodbseq',$startID=1)
  226. {
  227. $getnext = ("SELECT Gen_ID($seqname,1) FROM RDB\$DATABASE");
  228. $rs = @$this->Execute($getnext);
  229. if (!$rs) {
  230. $this->Execute(("INSERT INTO RDB\$GENERATORS (RDB\$GENERATOR_NAME) VALUES (UPPER('$seqname'))" ));
  231. $this->Execute("SET GENERATOR $seqname TO ".($startID-1).';');
  232. $rs = $this->Execute($getnext);
  233. }
  234. if ($rs && !$rs->EOF) $this->genID = (integer) reset($rs->fields);
  235. else $this->genID = 0; // false
  236. if ($rs) $rs->Close();
  237. return $this->genID;
  238. }
  239. function SelectDB($dbName)
  240. {
  241. return false;
  242. }
  243. function _handleerror()
  244. {
  245. $this->_errorMsg = ibase_errmsg();
  246. }
  247. function ErrorNo()
  248. {
  249. if (preg_match('/error code = ([\-0-9]*)/i', $this->_errorMsg,$arr)) return (integer) $arr[1];
  250. else return 0;
  251. }
  252. function ErrorMsg()
  253. {
  254. return $this->_errorMsg;
  255. }
  256. function Prepare($sql)
  257. {
  258. $stmt = ibase_prepare($this->_connectionID,$sql);
  259. if (!$stmt) return false;
  260. return array($sql,$stmt);
  261. }
  262. // returns query ID if successful, otherwise false
  263. // there have been reports of problems with nested queries - the code is probably not re-entrant?
  264. function _query($sql,$iarr=false)
  265. {
  266. if (!$this->autoCommit && $this->_transactionID) {
  267. $conn = $this->_transactionID;
  268. $docommit = false;
  269. } else {
  270. $conn = $this->_connectionID;
  271. $docommit = true;
  272. }
  273. if (is_array($sql)) {
  274. $fn = 'ibase_execute';
  275. $sql = $sql[1];
  276. if (is_array($iarr)) {
  277. if (ADODB_PHPVER >= 0x4050) { // actually 4.0.4
  278. if ( !isset($iarr[0]) ) $iarr[0] = ''; // PHP5 compat hack
  279. $fnarr =& array_merge( array($sql) , $iarr);
  280. $ret = call_user_func_array($fn,$fnarr);
  281. } else {
  282. switch(sizeof($iarr)) {
  283. case 1: $ret = $fn($sql,$iarr[0]); break;
  284. case 2: $ret = $fn($sql,$iarr[0],$iarr[1]); break;
  285. case 3: $ret = $fn($sql,$iarr[0],$iarr[1],$iarr[2]); break;
  286. case 4: $ret = $fn($sql,$iarr[0],$iarr[1],$iarr[2],$iarr[3]); break;
  287. case 5: $ret = $fn($sql,$iarr[0],$iarr[1],$iarr[2],$iarr[3],$iarr[4]); break;
  288. case 6: $ret = $fn($sql,$iarr[0],$iarr[1],$iarr[2],$iarr[3],$iarr[4],$iarr[5]); break;
  289. case 7: $ret = $fn($sql,$iarr[0],$iarr[1],$iarr[2],$iarr[3],$iarr[4],$iarr[5],$iarr[6]); break;
  290. default: ADOConnection::outp( "Too many parameters to ibase query $sql");
  291. case 8: $ret = $fn($sql,$iarr[0],$iarr[1],$iarr[2],$iarr[3],$iarr[4],$iarr[5],$iarr[6],$iarr[7]); break;
  292. }
  293. }
  294. } else $ret = $fn($sql);
  295. } else {
  296. $fn = 'ibase_query';
  297. if (is_array($iarr)) {
  298. if (ADODB_PHPVER >= 0x4050) { // actually 4.0.4
  299. if (sizeof($iarr) == 0) $iarr[0] = ''; // PHP5 compat hack
  300. $fnarr =& array_merge( array($conn,$sql) , $iarr);
  301. $ret = call_user_func_array($fn,$fnarr);
  302. } else {
  303. switch(sizeof($iarr)) {
  304. case 1: $ret = $fn($conn,$sql,$iarr[0]); break;
  305. case 2: $ret = $fn($conn,$sql,$iarr[0],$iarr[1]); break;
  306. case 3: $ret = $fn($conn,$sql,$iarr[0],$iarr[1],$iarr[2]); break;
  307. case 4: $ret = $fn($conn,$sql,$iarr[0],$iarr[1],$iarr[2],$iarr[3]); break;
  308. case 5: $ret = $fn($conn,$sql,$iarr[0],$iarr[1],$iarr[2],$iarr[3],$iarr[4]); break;
  309. case 6: $ret = $fn($conn,$sql,$iarr[0],$iarr[1],$iarr[2],$iarr[3],$iarr[4],$iarr[5]); break;
  310. case 7: $ret = $fn($conn,$sql,$iarr[0],$iarr[1],$iarr[2],$iarr[3],$iarr[4],$iarr[5],$iarr[6]); break;
  311. default: ADOConnection::outp( "Too many parameters to ibase query $sql");
  312. case 8: $ret = $fn($conn,$sql,$iarr[0],$iarr[1],$iarr[2],$iarr[3],$iarr[4],$iarr[5],$iarr[6],$iarr[7]); break;
  313. }
  314. }
  315. } else $ret = $fn($conn,$sql);
  316. }
  317. if ($docommit && $ret === true) ibase_commit($this->_connectionID);
  318. $this->_handleerror();
  319. return $ret;
  320. }
  321. // returns true or false
  322. function _close()
  323. {
  324. if (!$this->autoCommit) @ibase_rollback($this->_connectionID);
  325. return @ibase_close($this->_connectionID);
  326. }
  327. //OPN STUFF start
  328. function _ConvertFieldType(&$fld, $ftype, $flen, $fscale, $fsubtype, $fprecision, $dialect3)
  329. {
  330. $fscale = abs($fscale);
  331. $fld->max_length = $flen;
  332. $fld->scale = null;
  333. switch($ftype){
  334. case 7:
  335. case 8:
  336. if ($dialect3) {
  337. switch($fsubtype){
  338. case 0:
  339. $fld->type = ($ftype == 7 ? 'smallint' : 'integer');
  340. break;
  341. case 1:
  342. $fld->type = 'numeric';
  343. $fld->max_length = $fprecision;
  344. $fld->scale = $fscale;
  345. break;
  346. case 2:
  347. $fld->type = 'decimal';
  348. $fld->max_length = $fprecision;
  349. $fld->scale = $fscale;
  350. break;
  351. } // switch
  352. } else {
  353. if ($fscale !=0) {
  354. $fld->type = 'decimal';
  355. $fld->scale = $fscale;
  356. $fld->max_length = ($ftype == 7 ? 4 : 9);
  357. } else {
  358. $fld->type = ($ftype == 7 ? 'smallint' : 'integer');
  359. }
  360. }
  361. break;
  362. case 16:
  363. if ($dialect3) {
  364. switch($fsubtype){
  365. case 0:
  366. $fld->type = 'decimal';
  367. $fld->max_length = 18;
  368. $fld->scale = 0;
  369. break;
  370. case 1:
  371. $fld->type = 'numeric';
  372. $fld->max_length = $fprecision;
  373. $fld->scale = $fscale;
  374. break;
  375. case 2:
  376. $fld->type = 'decimal';
  377. $fld->max_length = $fprecision;
  378. $fld->scale = $fscale;
  379. break;
  380. } // switch
  381. }
  382. break;
  383. case 10:
  384. $fld->type = 'float';
  385. break;
  386. case 14:
  387. $fld->type = 'char';
  388. break;
  389. case 27:
  390. if ($fscale !=0) {
  391. $fld->type = 'decimal';
  392. $fld->max_length = 15;
  393. $fld->scale = 5;
  394. } else {
  395. $fld->type = 'double';
  396. }
  397. break;
  398. case 35:
  399. if ($dialect3) {
  400. $fld->type = 'timestamp';
  401. } else {
  402. $fld->type = 'date';
  403. }
  404. break;
  405. case 12:
  406. $fld->type = 'date';
  407. break;
  408. case 13:
  409. $fld->type = 'time';
  410. break;
  411. case 37:
  412. $fld->type = 'varchar';
  413. break;
  414. case 40:
  415. $fld->type = 'cstring';
  416. break;
  417. case 261:
  418. $fld->type = 'blob';
  419. $fld->max_length = -1;
  420. break;
  421. } // switch
  422. }
  423. //OPN STUFF end
  424. // returns array of ADOFieldObjects for current table
  425. function &MetaColumns($table)
  426. {
  427. global $ADODB_FETCH_MODE;
  428. $save = $ADODB_FETCH_MODE;
  429. $ADODB_FETCH_MODE = ADODB_FETCH_NUM;
  430. $rs = $this->Execute(sprintf($this->metaColumnsSQL,strtoupper($table)));
  431. $ADODB_FETCH_MODE = $save;
  432. if ($rs === false) {
  433. $false = false;
  434. return $false;
  435. }
  436. $retarr = array();
  437. //OPN STUFF start
  438. $dialect3 = ($this->dialect==3 ? true : false);
  439. //OPN STUFF end
  440. while (!$rs->EOF) { //print_r($rs->fields);
  441. $fld = new ADOFieldObject();
  442. $fld->name = trim($rs->fields[0]);
  443. //OPN STUFF start
  444. $this->_ConvertFieldType($fld, $rs->fields[7], $rs->fields[3], $rs->fields[4], $rs->fields[5], $rs->fields[6], $dialect3);
  445. if (isset($rs->fields[1]) && $rs->fields[1]) {
  446. $fld->not_null = true;
  447. }
  448. if (isset($rs->fields[2])) {
  449. $fld->has_default = true;
  450. $d = substr($rs->fields[2],strlen('default '));
  451. switch ($fld->type)
  452. {
  453. case 'smallint':
  454. case 'integer': $fld->default_value = (int) $d; break;
  455. case 'char':
  456. case 'blob':
  457. case 'text':
  458. case 'varchar': $fld->default_value = (string) substr($d,1,strlen($d)-2); break;
  459. case 'double':
  460. case 'float': $fld->default_value = (float) $d; break;
  461. default: $fld->default_value = $d; break;
  462. }
  463. // case 35:$tt = 'TIMESTAMP'; break;
  464. }
  465. if ((isset($rs->fields[5])) && ($fld->type == 'blob')) {
  466. $fld->sub_type = $rs->fields[5];
  467. } else {
  468. $fld->sub_type = null;
  469. }
  470. //OPN STUFF end
  471. if ($ADODB_FETCH_MODE == ADODB_FETCH_NUM) $retarr[] = $fld;
  472. else $retarr[strtoupper($fld->name)] = $fld;
  473. $rs->MoveNext();
  474. }
  475. $rs->Close();
  476. return empty($retarr) ? false : $retarr;
  477. }
  478. function BlobEncode( $blob )
  479. {
  480. $blobid = ibase_blob_create( $this->_connectionID);
  481. ibase_blob_add( $blobid, $blob );
  482. return ibase_blob_close( $blobid );
  483. }
  484. // since we auto-decode all blob's since 2.42,
  485. // BlobDecode should not do any transforms
  486. function BlobDecode($blob)
  487. {
  488. return $blob;
  489. }
  490. // old blobdecode function
  491. // still used to auto-decode all blob's
  492. function _BlobDecode( $blob )
  493. {
  494. $blobid = ibase_blob_open( $blob );
  495. $realblob = ibase_blob_get( $blobid,$this->maxblobsize); // 2nd param is max size of blob -- Kevin Boillet <kevinboillet@yahoo.fr>
  496. while($string = ibase_blob_get($blobid, 8192)){
  497. $realblob .= $string;
  498. }
  499. ibase_blob_close( $blobid );
  500. return( $realblob );
  501. }
  502. function UpdateBlobFile($table,$column,$path,$where,$blobtype='BLOB')
  503. {
  504. $fd = fopen($path,'rb');
  505. if ($fd === false) return false;
  506. $blob_id = ibase_blob_create($this->_connectionID);
  507. /* fill with data */
  508. while ($val = fread($fd,32768)){
  509. ibase_blob_add($blob_id, $val);
  510. }
  511. /* close and get $blob_id_str for inserting into table */
  512. $blob_id_str = ibase_blob_close($blob_id);
  513. fclose($fd);
  514. return $this->Execute("UPDATE $table SET $column=(?) WHERE $where",array($blob_id_str)) != false;
  515. }
  516. /*
  517. Insert a null into the blob field of the table first.
  518. Then use UpdateBlob to store the blob.
  519. Usage:
  520. $conn->Execute('INSERT INTO blobtable (id, blobcol) VALUES (1, null)');
  521. $conn->UpdateBlob('blobtable','blobcol',$blob,'id=1');
  522. */
  523. function UpdateBlob($table,$column,$val,$where,$blobtype='BLOB')
  524. {
  525. $blob_id = ibase_blob_create($this->_connectionID);
  526. // ibase_blob_add($blob_id, $val);
  527. // replacement that solves the problem by which only the first modulus 64K /
  528. // of $val are stored at the blob field ////////////////////////////////////
  529. // Thx Abel Berenstein aberenstein#afip.gov.ar
  530. $len = strlen($val);
  531. $chunk_size = 32768;
  532. $tail_size = $len % $chunk_size;
  533. $n_chunks = ($len - $tail_size) / $chunk_size;
  534. for ($n = 0; $n < $n_chunks; $n++) {
  535. $start = $n * $chunk_size;
  536. $data = substr($val, $start, $chunk_size);
  537. ibase_blob_add($blob_id, $data);
  538. }
  539. if ($tail_size) {
  540. $start = $n_chunks * $chunk_size;
  541. $data = substr($val, $start, $tail_size);
  542. ibase_blob_add($blob_id, $data);
  543. }
  544. // end replacement /////////////////////////////////////////////////////////
  545. $blob_id_str = ibase_blob_close($blob_id);
  546. return $this->Execute("UPDATE $table SET $column=(?) WHERE $where",array($blob_id_str)) != false;
  547. }
  548. function OldUpdateBlob($table,$column,$val,$where,$blobtype='BLOB')
  549. {
  550. $blob_id = ibase_blob_create($this->_connectionID);
  551. ibase_blob_add($blob_id, $val);
  552. $blob_id_str = ibase_blob_close($blob_id);
  553. return $this->Execute("UPDATE $table SET $column=(?) WHERE $where",array($blob_id_str)) != false;
  554. }
  555. // Format date column in sql string given an input format that understands Y M D
  556. // Only since Interbase 6.0 - uses EXTRACT
  557. // problem - does not zero-fill the day and month yet
  558. function SQLDate($fmt, $col=false)
  559. {
  560. if (!$col) $col = $this->sysDate;
  561. $s = '';
  562. $len = strlen($fmt);
  563. for ($i=0; $i < $len; $i++) {
  564. if ($s) $s .= '||';
  565. $ch = $fmt[$i];
  566. switch($ch) {
  567. case 'Y':
  568. case 'y':
  569. $s .= "extract(year from $col)";
  570. break;
  571. case 'M':
  572. case 'm':
  573. $s .= "extract(month from $col)";
  574. break;
  575. case 'Q':
  576. case 'q':
  577. $s .= "cast(((extract(month from $col)+2) / 3) as integer)";
  578. break;
  579. case 'D':
  580. case 'd':
  581. $s .= "(extract(day from $col))";
  582. break;
  583. case 'H':
  584. case 'h':
  585. $s .= "(extract(hour from $col))";
  586. break;
  587. case 'I':
  588. case 'i':
  589. $s .= "(extract(minute from $col))";
  590. break;
  591. case 'S':
  592. case 's':
  593. $s .= "CAST((extract(second from $col)) AS INTEGER)";
  594. break;
  595. default:
  596. if ($ch == '\\') {
  597. $i++;
  598. $ch = substr($fmt,$i,1);
  599. }
  600. $s .= $this->qstr($ch);
  601. break;
  602. }
  603. }
  604. return $s;
  605. }
  606. }
  607. /*--------------------------------------------------------------------------------------
  608. Class Name: Recordset
  609. --------------------------------------------------------------------------------------*/
  610. class ADORecordset_ibase extends ADORecordSet
  611. {
  612. var $databaseType = "ibase";
  613. var $bind=false;
  614. var $_cacheType;
  615. function ADORecordset_ibase($id,$mode=false)
  616. {
  617. global $ADODB_FETCH_MODE;
  618. $this->fetchMode = ($mode === false) ? $ADODB_FETCH_MODE : $mode;
  619. $this->ADORecordSet($id);
  620. }
  621. /* Returns: an object containing field information.
  622. Get column information in the Recordset object. fetchField() can be used in order to obtain information about
  623. fields in a certain query result. If the field offset isn't specified, the next field that wasn't yet retrieved by
  624. fetchField() is retrieved. */
  625. function &FetchField($fieldOffset = -1)
  626. {
  627. $fld = new ADOFieldObject;
  628. $ibf = ibase_field_info($this->_queryID,$fieldOffset);
  629. switch (ADODB_ASSOC_CASE) {
  630. case 2: // the default
  631. $fld->name = ($ibf['alias']);
  632. if (empty($fld->name)) $fld->name = ($ibf['name']);
  633. break;
  634. case 0:
  635. $fld->name = strtoupper($ibf['alias']);
  636. if (empty($fld->name)) $fld->name = strtoupper($ibf['name']);
  637. break;
  638. case 1:
  639. $fld->name = strtolower($ibf['alias']);
  640. if (empty($fld->name)) $fld->name = strtolower($ibf['name']);
  641. break;
  642. }
  643. $fld->type = $ibf['type'];
  644. $fld->max_length = $ibf['length'];
  645. /* This needs to be populated from the metadata */
  646. $fld->not_null = false;
  647. $fld->has_default = false;
  648. $fld->default_value = 'null';
  649. return $fld;
  650. }
  651. function _initrs()
  652. {
  653. $this->_numOfRows = -1;
  654. $this->_numOfFields = @ibase_num_fields($this->_queryID);
  655. // cache types for blob decode check
  656. for ($i=0, $max = $this->_numOfFields; $i < $max; $i++) {
  657. $f1 = $this->FetchField($i);
  658. $this->_cacheType[] = $f1->type;
  659. }
  660. }
  661. function _seek($row)
  662. {
  663. return false;
  664. }
  665. function _fetch()
  666. {
  667. $f = @ibase_fetch_row($this->_queryID);
  668. if ($f === false) {
  669. $this->fields = false;
  670. return false;
  671. }
  672. // OPN stuff start - optimized
  673. // fix missing nulls and decode blobs automatically
  674. global $ADODB_ANSI_PADDING_OFF;
  675. //$ADODB_ANSI_PADDING_OFF=1;
  676. $rtrim = !empty($ADODB_ANSI_PADDING_OFF);
  677. for ($i=0, $max = $this->_numOfFields; $i < $max; $i++) {
  678. if ($this->_cacheType[$i]=="BLOB") {
  679. if (isset($f[$i])) {
  680. $f[$i] = $this->connection->_BlobDecode($f[$i]);
  681. } else {
  682. $f[$i] = null;
  683. }
  684. } else {
  685. if (!isset($f[$i])) {
  686. $f[$i] = null;
  687. } else if ($rtrim && is_string($f[$i])) {
  688. $f[$i] = rtrim($f[$i]);
  689. }
  690. }
  691. }
  692. // OPN stuff end
  693. $this->fields = $f;
  694. if ($this->fetchMode == ADODB_FETCH_ASSOC) {
  695. $this->fields = &$this->GetRowAssoc(ADODB_ASSOC_CASE);
  696. } else if ($this->fetchMode == ADODB_FETCH_BOTH) {
  697. $this->fields =& array_merge($this->fields,$this->GetRowAssoc(ADODB_ASSOC_CASE));
  698. }
  699. return true;
  700. }
  701. /* Use associative array to get fields array */
  702. function Fields($colname)
  703. {
  704. if ($this->fetchMode & ADODB_FETCH_ASSOC) return $this->fields[$colname];
  705. if (!$this->bind) {
  706. $this->bind = array();
  707. for ($i=0; $i < $this->_numOfFields; $i++) {
  708. $o = $this->FetchField($i);
  709. $this->bind[strtoupper($o->name)] = $i;
  710. }
  711. }
  712. return $this->fields[$this->bind[strtoupper($colname)]];
  713. }
  714. function _close()
  715. {
  716. return @ibase_free_result($this->_queryID);
  717. }
  718. function MetaType($t,$len=-1,$fieldobj=false)
  719. {
  720. if (is_object($t)) {
  721. $fieldobj = $t;
  722. $t = $fieldobj->type;
  723. $len = $fieldobj->max_length;
  724. }
  725. switch (strtoupper($t)) {
  726. case 'CHAR':
  727. return 'C';
  728. case 'TEXT':
  729. case 'VARCHAR':
  730. case 'VARYING':
  731. if ($len <= $this->blobSize) return 'C';
  732. return 'X';
  733. case 'BLOB':
  734. return 'B';
  735. case 'TIMESTAMP':
  736. case 'DATE': return 'D';
  737. case 'TIME': return 'T';
  738. //case 'T': return 'T';
  739. //case 'L': return 'L';
  740. case 'INT':
  741. case 'SHORT':
  742. case 'INTEGER': return 'I';
  743. default: return 'N';
  744. }
  745. }
  746. }
  747. ?>