adodb-mysqli.inc.php 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818
  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. Set tabs to 8.
  8. MySQL code that does not support transactions. Use mysqlt if you need transactions.
  9. Requires mysql client. Works on Windows and Unix.
  10. 21 October 2003: MySQLi extension implementation by Arjen de Rijke (a.de.rijke@xs4all.nl)
  11. Based on adodb 3.40
  12. */
  13. // security - hide paths
  14. //if (!defined('ADODB_DIR')) die();
  15. if (! defined("_ADODB_MYSQLI_LAYER")) {
  16. define("_ADODB_MYSQLI_LAYER", 1 );
  17. // disable adodb extension - currently incompatible.
  18. global $ADODB_EXTENSION; $ADODB_EXTENSION = false;
  19. class ADODB_mysqli extends ADOConnection {
  20. var $databaseType = 'mysqli';
  21. var $dataProvider = 'native';
  22. var $hasInsertID = true;
  23. var $hasAffectedRows = true;
  24. var $metaTablesSQL = "SHOW TABLES";
  25. var $metaColumnsSQL = "SHOW COLUMNS FROM %s";
  26. var $fmtTimeStamp = "'Y-m-d H:i:s'";
  27. var $hasLimit = true;
  28. var $hasMoveFirst = true;
  29. var $hasGenID = true;
  30. var $isoDates = true; // accepts dates in ISO format
  31. var $sysDate = 'CURDATE()';
  32. var $sysTimeStamp = 'NOW()';
  33. var $hasTransactions = false;
  34. var $forceNewConnect = false;
  35. var $poorAffectedRows = true;
  36. var $clientFlags = 0;
  37. var $substr = "substring";
  38. var $port = false;
  39. var $socket = false;
  40. var $_bindInputArray = false;
  41. var $nameQuote = '`'; /// string to use to quote identifiers and names
  42. function ADODB_mysqli()
  43. {
  44. if(!extension_loaded("mysqli"))
  45. trigger_error("You must have the mysqli extension installed.", E_USER_ERROR);
  46. }
  47. // returns true or false
  48. // To add: parameter int $port,
  49. // parameter string $socket
  50. function _connect($argHostname = NULL,
  51. $argUsername = NULL,
  52. $argPassword = NULL,
  53. $argDatabasename = NULL, $persist=false)
  54. {
  55. $this->_connectionID = @mysqli_init();
  56. if (is_null($this->_connectionID)) {
  57. // mysqli_init only fails if insufficient memory
  58. if ($this->debug)
  59. ADOConnection::outp("mysqli_init() failed : " . $this->ErrorMsg());
  60. return false;
  61. }
  62. // Set connection options
  63. // Not implemented now
  64. // mysqli_options($this->_connection,,);
  65. if (mysqli_real_connect($this->_connectionID,
  66. $argHostname,
  67. $argUsername,
  68. $argPassword,
  69. $argDatabasename,
  70. $this->port,
  71. $this->socket,
  72. $this->clientFlags))
  73. {
  74. if ($argDatabasename) return $this->SelectDB($argDatabasename);
  75. return true;
  76. }
  77. else {
  78. if ($this->debug)
  79. ADOConnection::outp("Could't connect : " . $this->ErrorMsg());
  80. return false;
  81. }
  82. }
  83. // returns true or false
  84. // How to force a persistent connection
  85. function _pconnect($argHostname, $argUsername, $argPassword, $argDatabasename)
  86. {
  87. return $this->_connect($argHostname, $argUsername, $argPassword, $argDatabasename, true);
  88. }
  89. // When is this used? Close old connection first?
  90. // In _connect(), check $this->forceNewConnect?
  91. function _nconnect($argHostname, $argUsername, $argPassword, $argDatabasename)
  92. {
  93. $this->forceNewConnect = true;
  94. return $this->_connect($argHostname, $argUsername, $argPassword, $argDatabasename);
  95. }
  96. function IfNull( $field, $ifNull )
  97. {
  98. return " IFNULL($field, $ifNull) "; // if MySQL
  99. }
  100. function ServerInfo()
  101. {
  102. $arr['description'] = $this->GetOne("select version()");
  103. $arr['version'] = ADOConnection::_findvers($arr['description']);
  104. return $arr;
  105. }
  106. function BeginTrans()
  107. {
  108. if ($this->transOff) return true;
  109. $this->transCnt += 1;
  110. $this->Execute('SET AUTOCOMMIT=0');
  111. $this->Execute('BEGIN');
  112. return true;
  113. }
  114. function CommitTrans($ok=true)
  115. {
  116. if ($this->transOff) return true;
  117. if (!$ok) return $this->RollbackTrans();
  118. if ($this->transCnt) $this->transCnt -= 1;
  119. $this->Execute('COMMIT');
  120. $this->Execute('SET AUTOCOMMIT=1');
  121. return true;
  122. }
  123. function RollbackTrans()
  124. {
  125. if ($this->transOff) return true;
  126. if ($this->transCnt) $this->transCnt -= 1;
  127. $this->Execute('ROLLBACK');
  128. $this->Execute('SET AUTOCOMMIT=1');
  129. return true;
  130. }
  131. // if magic quotes disabled, use mysql_real_escape_string()
  132. // From readme.htm:
  133. // Quotes a string to be sent to the database. The $magic_quotes_enabled
  134. // parameter may look funny, but the idea is if you are quoting a
  135. // string extracted from a POST/GET variable, then
  136. // pass get_magic_quotes_gpc() as the second parameter. This will
  137. // ensure that the variable is not quoted twice, once by qstr and once
  138. // by the magic_quotes_gpc.
  139. //
  140. //Eg. $s = $db->qstr(HTTP_GET_VARS['name'],get_magic_quotes_gpc());
  141. function qstr($s, $magic_quotes = false)
  142. {
  143. if (!$magic_quotes) {
  144. if (PHP_VERSION >= 5)
  145. return "'" . mysqli_real_escape_string($this->_connectionID, $s) . "'";
  146. if ($this->replaceQuote[0] == '\\')
  147. $s = adodb_str_replace(array('\\',"\0"),array('\\\\',"\\\0"),$s);
  148. return "'".str_replace("'",$this->replaceQuote,$s)."'";
  149. }
  150. // undo magic quotes for "
  151. $s = str_replace('\\"','"',$s);
  152. return "'$s'";
  153. }
  154. function _insertid()
  155. {
  156. $result = @mysqli_insert_id($this->_connectionID);
  157. if ($result == -1){
  158. if ($this->debug) ADOConnection::outp("mysqli_insert_id() failed : " . $this->ErrorMsg());
  159. }
  160. return $result;
  161. }
  162. // Only works for INSERT, UPDATE and DELETE query's
  163. function _affectedrows()
  164. {
  165. $result = @mysqli_affected_rows($this->_connectionID);
  166. if ($result == -1) {
  167. if ($this->debug) ADOConnection::outp("mysqli_affected_rows() failed : " . $this->ErrorMsg());
  168. }
  169. return $result;
  170. }
  171. // See http://www.mysql.com/doc/M/i/Miscellaneous_functions.html
  172. // Reference on Last_Insert_ID on the recommended way to simulate sequences
  173. var $_genIDSQL = "update %s set id=LAST_INSERT_ID(id+1);";
  174. var $_genSeqSQL = "create table %s (id int not null)";
  175. var $_genSeq2SQL = "insert into %s values (%s)";
  176. var $_dropSeqSQL = "drop table %s";
  177. function CreateSequence($seqname='adodbseq',$startID=1)
  178. {
  179. if (empty($this->_genSeqSQL)) return false;
  180. $u = strtoupper($seqname);
  181. $ok = $this->Execute(sprintf($this->_genSeqSQL,$seqname));
  182. if (!$ok) return false;
  183. return $this->Execute(sprintf($this->_genSeq2SQL,$seqname,$startID-1));
  184. }
  185. function GenID($seqname='adodbseq',$startID=1)
  186. {
  187. // post-nuke sets hasGenID to false
  188. if (!$this->hasGenID) return false;
  189. $getnext = sprintf($this->_genIDSQL,$seqname);
  190. $holdtransOK = $this->_transOK; // save the current status
  191. $rs = @$this->Execute($getnext);
  192. if (!$rs) {
  193. if ($holdtransOK) $this->_transOK = true; //if the status was ok before reset
  194. $u = strtoupper($seqname);
  195. $this->Execute(sprintf($this->_genSeqSQL,$seqname));
  196. $this->Execute(sprintf($this->_genSeq2SQL,$seqname,$startID-1));
  197. $rs = $this->Execute($getnext);
  198. }
  199. $this->genID = mysqli_insert_id($this->_connectionID);
  200. if ($rs) $rs->Close();
  201. return $this->genID;
  202. }
  203. function &MetaDatabases()
  204. {
  205. $query = "SHOW DATABASES";
  206. $ret =& $this->Execute($query);
  207. return $ret;
  208. }
  209. function &MetaIndexes ($table, $primary = FALSE)
  210. {
  211. // save old fetch mode
  212. global $ADODB_FETCH_MODE;
  213. $save = $ADODB_FETCH_MODE;
  214. $ADODB_FETCH_MODE = ADODB_FETCH_NUM;
  215. if ($this->fetchMode !== FALSE) {
  216. $savem = $this->SetFetchMode(FALSE);
  217. }
  218. // get index details
  219. $rs = $this->Execute(sprintf('SHOW INDEXES FROM %s',$table));
  220. // restore fetchmode
  221. if (isset($savem)) {
  222. $this->SetFetchMode($savem);
  223. }
  224. $ADODB_FETCH_MODE = $save;
  225. if (!is_object($rs)) {
  226. return FALSE;
  227. }
  228. $indexes = array ();
  229. // parse index data into array
  230. while ($row = $rs->FetchRow()) {
  231. if ($primary == FALSE AND $row[2] == 'PRIMARY') {
  232. continue;
  233. }
  234. if (!isset($indexes[$row[2]])) {
  235. $indexes[$row[2]] = array(
  236. 'unique' => ($row[1] == 0),
  237. 'columns' => array()
  238. );
  239. }
  240. $indexes[$row[2]]['columns'][$row[3] - 1] = $row[4];
  241. }
  242. // sort columns by order in the index
  243. foreach ( array_keys ($indexes) as $index )
  244. {
  245. ksort ($indexes[$index]['columns']);
  246. }
  247. return $indexes;
  248. }
  249. // Format date column in sql string given an input format that understands Y M D
  250. function SQLDate($fmt, $col=false)
  251. {
  252. if (!$col) $col = $this->sysTimeStamp;
  253. $s = 'DATE_FORMAT('.$col.",'";
  254. $concat = false;
  255. $len = strlen($fmt);
  256. for ($i=0; $i < $len; $i++) {
  257. $ch = $fmt[$i];
  258. switch($ch) {
  259. case 'Y':
  260. case 'y':
  261. $s .= '%Y';
  262. break;
  263. case 'Q':
  264. case 'q':
  265. $s .= "'),Quarter($col)";
  266. if ($len > $i+1) $s .= ",DATE_FORMAT($col,'";
  267. else $s .= ",('";
  268. $concat = true;
  269. break;
  270. case 'M':
  271. $s .= '%b';
  272. break;
  273. case 'm':
  274. $s .= '%m';
  275. break;
  276. case 'D':
  277. case 'd':
  278. $s .= '%d';
  279. break;
  280. case 'H':
  281. $s .= '%H';
  282. break;
  283. case 'h':
  284. $s .= '%I';
  285. break;
  286. case 'i':
  287. $s .= '%i';
  288. break;
  289. case 's':
  290. $s .= '%s';
  291. break;
  292. case 'a':
  293. case 'A':
  294. $s .= '%p';
  295. break;
  296. default:
  297. if ($ch == '\\') {
  298. $i++;
  299. $ch = substr($fmt,$i,1);
  300. }
  301. $s .= $ch;
  302. break;
  303. }
  304. }
  305. $s.="')";
  306. if ($concat) $s = "CONCAT($s)";
  307. return $s;
  308. }
  309. // returns concatenated string
  310. // much easier to run "mysqld --ansi" or "mysqld --sql-mode=PIPES_AS_CONCAT" and use || operator
  311. function Concat()
  312. {
  313. $s = "";
  314. $arr = func_get_args();
  315. // suggestion by andrew005@mnogo.ru
  316. $s = implode(',',$arr);
  317. if (strlen($s) > 0) return "CONCAT($s)";
  318. else return '';
  319. }
  320. // dayFraction is a day in floating point
  321. function OffsetDate($dayFraction,$date=false)
  322. {
  323. if (!$date)
  324. $date = $this->sysDate;
  325. return "from_unixtime(unix_timestamp($date)+($dayFraction)*24*3600)";
  326. }
  327. function &MetaColumns($table)
  328. {
  329. if (!$this->metaColumnsSQL)
  330. return false;
  331. global $ADODB_FETCH_MODE;
  332. $save = $ADODB_FETCH_MODE;
  333. $ADODB_FETCH_MODE = ADODB_FETCH_NUM;
  334. if ($this->fetchMode !== false)
  335. $savem = $this->SetFetchMode(false);
  336. $rs = $this->Execute(sprintf($this->metaColumnsSQL,$table));
  337. if (isset($savem)) $this->SetFetchMode($savem);
  338. $ADODB_FETCH_MODE = $save;
  339. if (!is_object($rs))
  340. return false;
  341. $retarr = array();
  342. while (!$rs->EOF) {
  343. $fld = new ADOFieldObject();
  344. $fld->name = $rs->fields[0];
  345. $type = $rs->fields[1];
  346. // split type into type(length):
  347. $fld->scale = null;
  348. if (preg_match("/^(.+)\((\d+),(\d+)/", $type, $query_array)) {
  349. $fld->type = $query_array[1];
  350. $fld->max_length = is_numeric($query_array[2]) ? $query_array[2] : -1;
  351. $fld->scale = is_numeric($query_array[3]) ? $query_array[3] : -1;
  352. } elseif (preg_match("/^(.+)\((\d+)/", $type, $query_array)) {
  353. $fld->type = $query_array[1];
  354. $fld->max_length = is_numeric($query_array[2]) ? $query_array[2] : -1;
  355. } else {
  356. $fld->type = $type;
  357. $fld->max_length = -1;
  358. }
  359. $fld->not_null = ($rs->fields[2] != 'YES');
  360. $fld->primary_key = ($rs->fields[3] == 'PRI');
  361. $fld->auto_increment = (strpos($rs->fields[5], 'auto_increment') !== false);
  362. $fld->binary = (strpos($type,'blob') !== false);
  363. $fld->unsigned = (strpos($type,'unsigned') !== false);
  364. if (!$fld->binary) {
  365. $d = $rs->fields[4];
  366. if ($d != '' && $d != 'NULL') {
  367. $fld->has_default = true;
  368. $fld->default_value = $d;
  369. } else {
  370. $fld->has_default = false;
  371. }
  372. }
  373. if ($save == ADODB_FETCH_NUM) {
  374. $retarr[] = $fld;
  375. } else {
  376. $retarr[strtoupper($fld->name)] = $fld;
  377. }
  378. $rs->MoveNext();
  379. }
  380. $rs->Close();
  381. return $retarr;
  382. }
  383. // returns true or false
  384. function SelectDB($dbName)
  385. {
  386. // $this->_connectionID = $this->mysqli_resolve_link($this->_connectionID);
  387. $this->databaseName = $dbName;
  388. if ($this->_connectionID) {
  389. $result = @mysqli_select_db($this->_connectionID, $dbName);
  390. if (!$result) {
  391. ADOConnection::outp("Select of database " . $dbName . " failed. " . $this->ErrorMsg());
  392. }
  393. return $result;
  394. }
  395. return false;
  396. }
  397. // parameters use PostgreSQL convention, not MySQL
  398. function &SelectLimit($sql,
  399. $nrows = -1,
  400. $offset = -1,
  401. $inputarr = false,
  402. $arg3 = false,
  403. $secs = 0)
  404. {
  405. $offsetStr = ($offset >= 0) ? "$offset," : '';
  406. if ($secs)
  407. $rs =& $this->CacheExecute($secs, $sql . " LIMIT $offsetStr$nrows" , $inputarr , $arg3);
  408. else
  409. $rs =& $this->Execute($sql . " LIMIT $offsetStr$nrows" , $inputarr , $arg3);
  410. return $rs;
  411. }
  412. function Prepare($sql)
  413. {
  414. return $sql;
  415. $stmt = $this->_connectionID->prepare($sql);
  416. if (!$stmt) {
  417. echo $this->ErrorMsg();
  418. return $sql;
  419. }
  420. return array($sql,$stmt);
  421. }
  422. // returns queryID or false
  423. function _query($sql, $inputarr)
  424. {
  425. global $ADODB_COUNTRECS;
  426. if (is_array($sql)) {
  427. $stmt = $sql[1];
  428. $a = '';
  429. foreach($inputarr as $k => $v) {
  430. if (is_string($v)) $a .= 's';
  431. else if (is_integer($v)) $a .= 'i';
  432. else $a .= 'd';
  433. }
  434. $fnarr =& array_merge( array($stmt,$a) , $inputarr);
  435. $ret = call_user_func_array('mysqli_stmt_bind_param',$fnarr);
  436. $ret = mysqli_stmt_execute($stmt);
  437. return $ret;
  438. }
  439. if (!$mysql_res = mysqli_query($this->_connectionID, $sql, ($ADODB_COUNTRECS) ? MYSQLI_STORE_RESULT : MYSQLI_USE_RESULT)) {
  440. if ($this->debug) ADOConnection::outp("Query: " . $sql . " failed. " . $this->ErrorMsg());
  441. return false;
  442. }
  443. return $mysql_res;
  444. }
  445. /* Returns: the last error message from previous database operation */
  446. function ErrorMsg()
  447. {
  448. if (empty($this->_connectionID))
  449. $this->_errorMsg = @mysqli_error();
  450. else
  451. $this->_errorMsg = @mysqli_error($this->_connectionID);
  452. return $this->_errorMsg;
  453. }
  454. /* Returns: the last error number from previous database operation */
  455. function ErrorNo()
  456. {
  457. if (empty($this->_connectionID))
  458. return @mysqli_errno();
  459. else
  460. return @mysqli_errno($this->_connectionID);
  461. }
  462. // returns true or false
  463. function _close()
  464. {
  465. @mysqli_close($this->_connectionID);
  466. $this->_connectionID = false;
  467. }
  468. /*
  469. * Maximum size of C field
  470. */
  471. function CharMax()
  472. {
  473. return 255;
  474. }
  475. /*
  476. * Maximum size of X field
  477. */
  478. function TextMax()
  479. {
  480. return 4294967295;
  481. }
  482. }
  483. /*--------------------------------------------------------------------------------------
  484. Class Name: Recordset
  485. --------------------------------------------------------------------------------------*/
  486. class ADORecordSet_mysqli extends ADORecordSet{
  487. var $databaseType = "mysqli";
  488. var $canSeek = true;
  489. function ADORecordSet_mysqli($queryID, $mode = false)
  490. {
  491. if ($mode === false)
  492. {
  493. global $ADODB_FETCH_MODE;
  494. $mode = $ADODB_FETCH_MODE;
  495. }
  496. switch ($mode)
  497. {
  498. case ADODB_FETCH_NUM:
  499. $this->fetchMode = MYSQLI_NUM;
  500. break;
  501. case ADODB_FETCH_ASSOC:
  502. $this->fetchMode = MYSQLI_ASSOC;
  503. break;
  504. case ADODB_FETCH_DEFAULT:
  505. case ADODB_FETCH_BOTH:
  506. default:
  507. $this->fetchMode = MYSQLI_BOTH;
  508. break;
  509. }
  510. $this->adodbFetchMode = $mode;
  511. $this->ADORecordSet($queryID);
  512. }
  513. function _initrs()
  514. {
  515. global $ADODB_COUNTRECS;
  516. $this->_numOfRows = $ADODB_COUNTRECS ? @mysqli_num_rows($this->_queryID) : -1;
  517. $this->_numOfFields = @mysqli_num_fields($this->_queryID);
  518. }
  519. function &FetchField($fieldOffset = -1)
  520. {
  521. $fieldnr = $fieldOffset;
  522. if ($fieldOffset != -1) {
  523. $fieldOffset = mysqli_field_seek($this->_queryID, $fieldnr);
  524. }
  525. $o = mysqli_fetch_field($this->_queryID);
  526. return $o;
  527. }
  528. function &GetRowAssoc($upper = true)
  529. {
  530. if ($this->fetchMode == MYSQLI_ASSOC && !$upper)
  531. return $this->fields;
  532. $row =& ADORecordSet::GetRowAssoc($upper);
  533. return $row;
  534. }
  535. /* Use associative array to get fields array */
  536. function Fields($colname)
  537. {
  538. if ($this->fetchMode != MYSQLI_NUM)
  539. return @$this->fields[$colname];
  540. if (!$this->bind) {
  541. $this->bind = array();
  542. for ($i = 0; $i < $this->_numOfFields; $i++) {
  543. $o = $this->FetchField($i);
  544. $this->bind[strtoupper($o->name)] = $i;
  545. }
  546. }
  547. return $this->fields[$this->bind[strtoupper($colname)]];
  548. }
  549. function _seek($row)
  550. {
  551. if ($this->_numOfRows == 0)
  552. return false;
  553. if ($row < 0)
  554. return false;
  555. mysqli_data_seek($this->_queryID, $row);
  556. $this->EOF = false;
  557. return true;
  558. }
  559. // 10% speedup to move MoveNext to child class
  560. // This is the only implementation that works now (23-10-2003).
  561. // Other functions return no or the wrong results.
  562. function MoveNext()
  563. {
  564. if ($this->EOF) return false;
  565. $this->_currentRow++;
  566. $this->fields = @mysqli_fetch_array($this->_queryID,$this->fetchMode);
  567. if (is_array($this->fields)) return true;
  568. $this->EOF = true;
  569. return false;
  570. }
  571. function _fetch()
  572. {
  573. $this->fields = mysqli_fetch_array($this->_queryID,$this->fetchMode);
  574. return is_array($this->fields);
  575. }
  576. function _close()
  577. {
  578. mysqli_free_result($this->_queryID);
  579. $this->_queryID = false;
  580. }
  581. /*
  582. 0 = MYSQLI_TYPE_DECIMAL
  583. 1 = MYSQLI_TYPE_CHAR
  584. 1 = MYSQLI_TYPE_TINY
  585. 2 = MYSQLI_TYPE_SHORT
  586. 3 = MYSQLI_TYPE_LONG
  587. 4 = MYSQLI_TYPE_FLOAT
  588. 5 = MYSQLI_TYPE_DOUBLE
  589. 6 = MYSQLI_TYPE_NULL
  590. 7 = MYSQLI_TYPE_TIMESTAMP
  591. 8 = MYSQLI_TYPE_LONGLONG
  592. 9 = MYSQLI_TYPE_INT24
  593. 10 = MYSQLI_TYPE_DATE
  594. 11 = MYSQLI_TYPE_TIME
  595. 12 = MYSQLI_TYPE_DATETIME
  596. 13 = MYSQLI_TYPE_YEAR
  597. 14 = MYSQLI_TYPE_NEWDATE
  598. 247 = MYSQLI_TYPE_ENUM
  599. 248 = MYSQLI_TYPE_SET
  600. 249 = MYSQLI_TYPE_TINY_BLOB
  601. 250 = MYSQLI_TYPE_MEDIUM_BLOB
  602. 251 = MYSQLI_TYPE_LONG_BLOB
  603. 252 = MYSQLI_TYPE_BLOB
  604. 253 = MYSQLI_TYPE_VAR_STRING
  605. 254 = MYSQLI_TYPE_STRING
  606. 255 = MYSQLI_TYPE_GEOMETRY
  607. */
  608. function MetaType($t, $len = -1, $fieldobj = false)
  609. {
  610. if (is_object($t)) {
  611. $fieldobj = $t;
  612. $t = $fieldobj->type;
  613. $len = $fieldobj->max_length;
  614. }
  615. $len = -1; // mysql max_length is not accurate
  616. switch (strtoupper($t)) {
  617. /* case 'STRING':
  618. case 'CHAR':
  619. case 'VARCHAR':
  620. case 'TINYBLOB':
  621. case 'TINYTEXT':
  622. case 'ENUM':
  623. case 'SET': */
  624. case MYSQLI_TYPE_TINY_BLOB :
  625. case MYSQLI_TYPE_CHAR :
  626. case MYSQLI_TYPE_STRING :
  627. case MYSQLI_TYPE_ENUM :
  628. case MYSQLI_TYPE_SET :
  629. case 253 :
  630. if ($len <= $this->blobSize) return 'C';
  631. /*case 'TEXT':
  632. case 'LONGTEXT':
  633. case 'MEDIUMTEXT':*/
  634. return 'X';
  635. // php_mysql extension always returns 'blob' even if 'text'
  636. // so we have to check whether binary...
  637. /*case 'IMAGE':
  638. case 'LONGBLOB':
  639. case 'BLOB':
  640. case 'MEDIUMBLOB':*/
  641. case MYSQLI_TYPE_BLOB :
  642. case MYSQLI_TYPE_LONG_BLOB :
  643. case MYSQLI_TYPE_MEDIUM_BLOB :
  644. return !empty($fieldobj->binary) ? 'B' : 'X';
  645. /*case 'YEAR':
  646. case 'DATE': */
  647. case MYSQLI_TYPE_DATE :
  648. case MYSQLI_TYPE_YEAR :
  649. return 'D';
  650. /*case 'TIME':
  651. case 'DATETIME':
  652. case 'TIMESTAMP':*/
  653. case MYSQLI_TYPE_DATETIME :
  654. case MYSQLI_TYPE_NEWDATE :
  655. case MYSQLI_TYPE_TIME :
  656. case MYSQLI_TYPE_TIMESTAMP :
  657. return 'T';
  658. /*case 'INT':
  659. case 'INTEGER':
  660. case 'BIGINT':
  661. case 'TINYINT':
  662. case 'MEDIUMINT':
  663. case 'SMALLINT':
  664. */
  665. case MYSQLI_TYPE_INT24 :
  666. case MYSQLI_TYPE_LONG :
  667. case MYSQLI_TYPE_LONGLONG :
  668. case MYSQLI_TYPE_SHORT :
  669. case MYSQLI_TYPE_TINY :
  670. if (!empty($fieldobj->primary_key)) return 'R';
  671. return 'I';
  672. /*
  673. // Added floating-point types
  674. // Maybe not necessery.
  675. case 'FLOAT':
  676. case 'DOUBLE':
  677. // case 'DOUBLE PRECISION':
  678. case 'DECIMAL':
  679. case 'DEC':
  680. case 'FIXED':*/
  681. default:
  682. if (!is_numeric($t)) echo "<p>--- Error in type matching $t -----</p>";
  683. return 'N';
  684. }
  685. } // function
  686. } // rs class
  687. }
  688. ?>