adodb-datadict.inc.php 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771
  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 4 for best viewing.
  8. DOCUMENTATION:
  9. See adodb/tests/test-datadict.php for docs and examples.
  10. */
  11. /*
  12. Test script for parser
  13. */
  14. // security - hide paths
  15. if (!defined('ADODB_DIR')) die();
  16. function Lens_ParseTest()
  17. {
  18. $str = "`zcol ACOL` NUMBER(32,2) DEFAULT 'The \"cow\" (and Jim''s dog) jumps over the moon' PRIMARY, INTI INT AUTO DEFAULT 0, zcol2\"afs ds";
  19. print "<p>$str</p>";
  20. $a= Lens_ParseArgs($str);
  21. print "<pre>";
  22. print_r($a);
  23. print "</pre>";
  24. }
  25. if (!function_exists('ctype_alnum')) {
  26. function ctype_alnum($text) {
  27. return preg_match('/^[a-z0-9]*$/i', $text);
  28. }
  29. }
  30. //Lens_ParseTest();
  31. /**
  32. Parse arguments, treat "text" (text) and 'text' as quotation marks.
  33. To escape, use "" or '' or ))
  34. Will read in "abc def" sans quotes, as: abc def
  35. Same with 'abc def'.
  36. However if `abc def`, then will read in as `abc def`
  37. @param endstmtchar Character that indicates end of statement
  38. @param tokenchars Include the following characters in tokens apart from A-Z and 0-9
  39. @returns 2 dimensional array containing parsed tokens.
  40. */
  41. function Lens_ParseArgs($args,$endstmtchar=',',$tokenchars='_.-')
  42. {
  43. $pos = 0;
  44. $intoken = false;
  45. $stmtno = 0;
  46. $endquote = false;
  47. $tokens = array();
  48. $tokens[$stmtno] = array();
  49. $max = strlen($args);
  50. $quoted = false;
  51. while ($pos < $max) {
  52. $ch = substr($args,$pos,1);
  53. switch($ch) {
  54. case ' ':
  55. case "\t":
  56. case "\n":
  57. case "\r":
  58. if (!$quoted) {
  59. if ($intoken) {
  60. $intoken = false;
  61. $tokens[$stmtno][] = implode('',$tokarr);
  62. }
  63. break;
  64. }
  65. $tokarr[] = $ch;
  66. break;
  67. case '`':
  68. if ($intoken) $tokarr[] = $ch;
  69. case '(':
  70. case ')':
  71. case '"':
  72. case "'":
  73. if ($intoken) {
  74. if (empty($endquote)) {
  75. $tokens[$stmtno][] = implode('',$tokarr);
  76. if ($ch == '(') $endquote = ')';
  77. else $endquote = $ch;
  78. $quoted = true;
  79. $intoken = true;
  80. $tokarr = array();
  81. } else if ($endquote == $ch) {
  82. $ch2 = substr($args,$pos+1,1);
  83. if ($ch2 == $endquote) {
  84. $pos += 1;
  85. $tokarr[] = $ch2;
  86. } else {
  87. $quoted = false;
  88. $intoken = false;
  89. $tokens[$stmtno][] = implode('',$tokarr);
  90. $endquote = '';
  91. }
  92. } else
  93. $tokarr[] = $ch;
  94. }else {
  95. if ($ch == '(') $endquote = ')';
  96. else $endquote = $ch;
  97. $quoted = true;
  98. $intoken = true;
  99. $tokarr = array();
  100. if ($ch == '`') $tokarr[] = '`';
  101. }
  102. break;
  103. default:
  104. if (!$intoken) {
  105. if ($ch == $endstmtchar) {
  106. $stmtno += 1;
  107. $tokens[$stmtno] = array();
  108. break;
  109. }
  110. $intoken = true;
  111. $quoted = false;
  112. $endquote = false;
  113. $tokarr = array();
  114. }
  115. if ($quoted) $tokarr[] = $ch;
  116. else if (ctype_alnum($ch) || strpos($tokenchars,$ch) !== false) $tokarr[] = $ch;
  117. else {
  118. if ($ch == $endstmtchar) {
  119. $tokens[$stmtno][] = implode('',$tokarr);
  120. $stmtno += 1;
  121. $tokens[$stmtno] = array();
  122. $intoken = false;
  123. $tokarr = array();
  124. break;
  125. }
  126. $tokens[$stmtno][] = implode('',$tokarr);
  127. $tokens[$stmtno][] = $ch;
  128. $intoken = false;
  129. }
  130. }
  131. $pos += 1;
  132. }
  133. if ($intoken) $tokens[$stmtno][] = implode('',$tokarr);
  134. return $tokens;
  135. }
  136. class ADODB_DataDict {
  137. var $connection;
  138. var $debug = false;
  139. var $dropTable = 'DROP TABLE %s';
  140. var $renameTable = 'RENAME TABLE %s TO %s';
  141. var $dropIndex = 'DROP INDEX %s';
  142. var $addCol = ' ADD';
  143. var $alterCol = ' ALTER COLUMN';
  144. var $dropCol = ' DROP COLUMN';
  145. var $renameColumn = 'ALTER TABLE %s RENAME COLUMN %s TO %s'; // table, old-column, new-column, column-definitions (not used by default)
  146. var $nameRegex = '\w';
  147. var $schema = false;
  148. var $serverInfo = array();
  149. var $autoIncrement = false;
  150. var $dataProvider;
  151. var $invalidResizeTypes4 = array('CLOB','BLOB','TEXT','DATE','TIME'); // for changetablesql
  152. var $blobSize = 100; /// any varchar/char field this size or greater is treated as a blob
  153. /// in other words, we use a text area for editting.
  154. function GetCommentSQL($table,$col)
  155. {
  156. return false;
  157. }
  158. function SetCommentSQL($table,$col,$cmt)
  159. {
  160. return false;
  161. }
  162. function &MetaTables()
  163. {
  164. if (!$this->connection->IsConnected()) return array();
  165. return $this->connection->MetaTables();
  166. }
  167. function &MetaColumns($tab, $upper=true, $schema=false)
  168. {
  169. if (!$this->connection->IsConnected()) return array();
  170. return $this->connection->MetaColumns($this->TableName($tab), $upper, $schema);
  171. }
  172. function &MetaPrimaryKeys($tab,$owner=false,$intkey=false)
  173. {
  174. if (!$this->connection->IsConnected()) return array();
  175. return $this->connection->MetaPrimaryKeys($this->TableName($tab), $owner, $intkey);
  176. }
  177. function &MetaIndexes($table, $primary = false, $owner = false)
  178. {
  179. if (!$this->connection->IsConnected()) return array();
  180. return $this->connection->MetaIndexes($this->TableName($table), $primary, $owner);
  181. }
  182. function MetaType($t,$len=-1,$fieldobj=false)
  183. {
  184. return ADORecordSet::MetaType($t,$len,$fieldobj);
  185. }
  186. function NameQuote($name = NULL)
  187. {
  188. if (!is_string($name)) {
  189. return FALSE;
  190. }
  191. $name = trim($name);
  192. if ( !is_object($this->connection) ) {
  193. return $name;
  194. }
  195. $quote = $this->connection->nameQuote;
  196. // if name is of the form `name`, quote it
  197. if ( preg_match('/^`(.+)`$/', $name, $matches) ) {
  198. return $quote . $matches[1] . $quote;
  199. }
  200. // if name contains special characters, quote it
  201. if ( !preg_match('/^[' . $this->nameRegex . ']+$/', $name) ) {
  202. return $quote . $name . $quote;
  203. }
  204. return $name;
  205. }
  206. function TableName($name)
  207. {
  208. if ( $this->schema ) {
  209. return $this->NameQuote($this->schema) .'.'. $this->NameQuote($name);
  210. }
  211. return $this->NameQuote($name);
  212. }
  213. // Executes the sql array returned by GetTableSQL and GetIndexSQL
  214. function ExecuteSQLArray($sql, $continueOnError = true)
  215. {
  216. $rez = 2;
  217. $conn = &$this->connection;
  218. $saved = $conn->debug;
  219. foreach($sql as $line) {
  220. if ($this->debug) $conn->debug = true;
  221. $ok = $conn->Execute($line);
  222. $conn->debug = $saved;
  223. if (!$ok) {
  224. if ($this->debug) ADOConnection::outp($conn->ErrorMsg());
  225. if (!$continueOnError) return 0;
  226. $rez = 1;
  227. }
  228. }
  229. return $rez;
  230. }
  231. /*
  232. Returns the actual type given a character code.
  233. C: varchar
  234. X: CLOB (character large object) or largest varchar size if CLOB is not supported
  235. C2: Multibyte varchar
  236. X2: Multibyte CLOB
  237. B: BLOB (binary large object)
  238. D: Date
  239. T: Date-time
  240. L: Integer field suitable for storing booleans (0 or 1)
  241. I: Integer
  242. F: Floating point number
  243. N: Numeric or decimal number
  244. */
  245. function ActualType($meta)
  246. {
  247. return $meta;
  248. }
  249. function CreateDatabase($dbname,$options=false)
  250. {
  251. $options = $this->_Options($options);
  252. $sql = array();
  253. $s = 'CREATE DATABASE ' . $this->NameQuote($dbname);
  254. if (isset($options[$this->upperName]))
  255. $s .= ' '.$options[$this->upperName];
  256. $sql[] = $s;
  257. return $sql;
  258. }
  259. /*
  260. Generates the SQL to create index. Returns an array of sql strings.
  261. */
  262. function CreateIndexSQL($idxname, $tabname, $flds, $idxoptions = false)
  263. {
  264. if (!is_array($flds)) {
  265. $flds = explode(',',$flds);
  266. }
  267. foreach($flds as $key => $fld) {
  268. $flds[$key] = $this->NameQuote($fld);
  269. }
  270. return $this->_IndexSQL($this->NameQuote($idxname), $this->TableName($tabname), $flds, $this->_Options($idxoptions));
  271. }
  272. function DropIndexSQL ($idxname, $tabname = NULL)
  273. {
  274. return array(sprintf($this->dropIndex, $this->NameQuote($idxname), $this->TableName($tabname)));
  275. }
  276. function SetSchema($schema)
  277. {
  278. $this->schema = $schema;
  279. }
  280. function AddColumnSQL($tabname, $flds)
  281. {
  282. $tabname = $this->TableName ($tabname);
  283. $sql = array();
  284. list($lines,$pkey) = $this->_GenFields($flds);
  285. $alter = 'ALTER TABLE ' . $tabname . $this->addCol . ' ';
  286. foreach($lines as $v) {
  287. $sql[] = $alter . $v;
  288. }
  289. return $sql;
  290. }
  291. /**
  292. * Change the definition of one column
  293. *
  294. * As some DBM's can't do that on there own, you need to supply the complete defintion of the new table,
  295. * to allow, recreating the table and copying the content over to the new table
  296. * @param string $tabname table-name
  297. * @param string $flds column-name and type for the changed column
  298. * @param string $tableflds='' complete defintion of the new table, eg. for postgres, default ''
  299. * @param array/string $tableoptions='' options for the new table see CreateTableSQL, default ''
  300. * @return array with SQL strings
  301. */
  302. function AlterColumnSQL($tabname, $flds, $tableflds='',$tableoptions='')
  303. {
  304. $tabname = $this->TableName ($tabname);
  305. $sql = array();
  306. list($lines,$pkey) = $this->_GenFields($flds);
  307. $alter = 'ALTER TABLE ' . $tabname . $this->alterCol . ' ';
  308. foreach($lines as $v) {
  309. $sql[] = $alter . $v;
  310. }
  311. return $sql;
  312. }
  313. /**
  314. * Rename one column
  315. *
  316. * Some DBM's can only do this together with changeing the type of the column (even if that stays the same, eg. mysql)
  317. * @param string $tabname table-name
  318. * @param string $oldcolumn column-name to be renamed
  319. * @param string $newcolumn new column-name
  320. * @param string $flds='' complete column-defintion-string like for AddColumnSQL, only used by mysql atm., default=''
  321. * @return array with SQL strings
  322. */
  323. function RenameColumnSQL($tabname,$oldcolumn,$newcolumn,$flds='')
  324. {
  325. $tabname = $this->TableName ($tabname);
  326. if ($flds) {
  327. list($lines,$pkey) = $this->_GenFields($flds);
  328. list(,$first) = each($lines);
  329. list(,$column_def) = split("[\t ]+",$first,2);
  330. }
  331. return array(sprintf($this->renameColumn,$tabname,$this->NameQuote($oldcolumn),$this->NameQuote($newcolumn),$column_def));
  332. }
  333. /**
  334. * Drop one column
  335. *
  336. * Some DBM's can't do that on there own, you need to supply the complete defintion of the new table,
  337. * to allow, recreating the table and copying the content over to the new table
  338. * @param string $tabname table-name
  339. * @param string $flds column-name and type for the changed column
  340. * @param string $tableflds='' complete defintion of the new table, eg. for postgres, default ''
  341. * @param array/string $tableoptions='' options for the new table see CreateTableSQL, default ''
  342. * @return array with SQL strings
  343. */
  344. function DropColumnSQL($tabname, $flds, $tableflds='',$tableoptions='')
  345. {
  346. $tabname = $this->TableName ($tabname);
  347. if (!is_array($flds)) $flds = explode(',',$flds);
  348. $sql = array();
  349. $alter = 'ALTER TABLE ' . $tabname . $this->dropCol . ' ';
  350. foreach($flds as $v) {
  351. $sql[] = $alter . $this->NameQuote($v);
  352. }
  353. return $sql;
  354. }
  355. function DropTableSQL($tabname)
  356. {
  357. return array (sprintf($this->dropTable, $this->TableName($tabname)));
  358. }
  359. function RenameTableSQL($tabname,$newname)
  360. {
  361. return array (sprintf($this->renameTable, $this->TableName($tabname),$this->TableName($newname)));
  362. }
  363. /*
  364. Generate the SQL to create table. Returns an array of sql strings.
  365. */
  366. function CreateTableSQL($tabname, $flds, $tableoptions=false)
  367. {
  368. if (!$tableoptions) $tableoptions = array();
  369. list($lines,$pkey) = $this->_GenFields($flds, true);
  370. $taboptions = $this->_Options($tableoptions);
  371. $tabname = $this->TableName ($tabname);
  372. $sql = $this->_TableSQL($tabname,$lines,$pkey,$taboptions);
  373. $tsql = $this->_Triggers($tabname,$taboptions);
  374. foreach($tsql as $s) $sql[] = $s;
  375. return $sql;
  376. }
  377. function _GenFields($flds,$widespacing=false)
  378. {
  379. if (is_string($flds)) {
  380. $padding = ' ';
  381. $txt = $flds.$padding;
  382. $flds = array();
  383. $flds0 = Lens_ParseArgs($txt,',');
  384. $hasparam = false;
  385. foreach($flds0 as $f0) {
  386. $f1 = array();
  387. foreach($f0 as $token) {
  388. switch (strtoupper($token)) {
  389. case 'CONSTRAINT':
  390. case 'DEFAULT':
  391. $hasparam = $token;
  392. break;
  393. default:
  394. if ($hasparam) $f1[$hasparam] = $token;
  395. else $f1[] = $token;
  396. $hasparam = false;
  397. break;
  398. }
  399. }
  400. $flds[] = $f1;
  401. }
  402. }
  403. $this->autoIncrement = false;
  404. $lines = array();
  405. $pkey = array();
  406. foreach($flds as $fld) {
  407. $fld = _array_change_key_case($fld);
  408. $fname = false;
  409. $fdefault = false;
  410. $fautoinc = false;
  411. $ftype = false;
  412. $fsize = false;
  413. $fprec = false;
  414. $fprimary = false;
  415. $fnoquote = false;
  416. $fdefts = false;
  417. $fdefdate = false;
  418. $fconstraint = false;
  419. $fnotnull = false;
  420. $funsigned = false;
  421. //-----------------
  422. // Parse attributes
  423. foreach($fld as $attr => $v) {
  424. if ($attr == 2 && is_numeric($v)) $attr = 'SIZE';
  425. else if (is_numeric($attr) && $attr > 1 && !is_numeric($v)) $attr = strtoupper($v);
  426. switch($attr) {
  427. case '0':
  428. case 'NAME': $fname = $v; break;
  429. case '1':
  430. case 'TYPE': $ty = $v; $ftype = $this->ActualType(strtoupper($v)); break;
  431. case 'SIZE':
  432. $dotat = strpos($v,'.'); if ($dotat === false) $dotat = strpos($v,',');
  433. if ($dotat === false) $fsize = $v;
  434. else {
  435. $fsize = substr($v,0,$dotat);
  436. $fprec = substr($v,$dotat+1);
  437. }
  438. break;
  439. case 'UNSIGNED': $funsigned = true; break;
  440. case 'AUTOINCREMENT':
  441. case 'AUTO': $fautoinc = true; $fnotnull = true; break;
  442. case 'KEY':
  443. case 'PRIMARY': $fprimary = $v; $fnotnull = true; break;
  444. case 'DEF':
  445. case 'DEFAULT': $fdefault = $v; break;
  446. case 'NOTNULL': $fnotnull = $v; break;
  447. case 'NOQUOTE': $fnoquote = $v; break;
  448. case 'DEFDATE': $fdefdate = $v; break;
  449. case 'DEFTIMESTAMP': $fdefts = $v; break;
  450. case 'CONSTRAINT': $fconstraint = $v; break;
  451. } //switch
  452. } // foreach $fld
  453. //--------------------
  454. // VALIDATE FIELD INFO
  455. if (!strlen($fname)) {
  456. if ($this->debug) ADOConnection::outp("Undefined NAME");
  457. return false;
  458. }
  459. $fid = strtoupper(preg_replace('/^`(.+)`$/', '$1', $fname));
  460. $fname = $this->NameQuote($fname);
  461. if (!strlen($ftype)) {
  462. if ($this->debug) ADOConnection::outp("Undefined TYPE for field '$fname'");
  463. return false;
  464. } else {
  465. $ftype = strtoupper($ftype);
  466. }
  467. $ftype = $this->_GetSize($ftype, $ty, $fsize, $fprec);
  468. if ($ty == 'X' || $ty == 'X2' || $ty == 'B') $fnotnull = false; // some blob types do not accept nulls
  469. if ($fprimary) $pkey[] = $fname;
  470. // some databases do not allow blobs to have defaults
  471. if ($ty == 'X') $fdefault = false;
  472. //--------------------
  473. // CONSTRUCT FIELD SQL
  474. if ($fdefts) {
  475. if (substr($this->connection->databaseType,0,5) == 'mysql') {
  476. $ftype = 'TIMESTAMP';
  477. } else {
  478. $fdefault = $this->connection->sysTimeStamp;
  479. }
  480. } else if ($fdefdate) {
  481. if (substr($this->connection->databaseType,0,5) == 'mysql') {
  482. $ftype = 'TIMESTAMP';
  483. } else {
  484. $fdefault = $this->connection->sysDate;
  485. }
  486. } else if (strlen($fdefault) && !$fnoquote)
  487. if ($ty == 'C' or $ty == 'X' or
  488. ( substr($fdefault,0,1) != "'" && !is_numeric($fdefault)))
  489. if (strlen($fdefault) != 1 && substr($fdefault,0,1) == ' ' && substr($fdefault,strlen($fdefault)-1) == ' ')
  490. $fdefault = trim($fdefault);
  491. else if (strtolower($fdefault) != 'null')
  492. $fdefault = $this->connection->qstr($fdefault);
  493. $suffix = $this->_CreateSuffix($fname,$ftype,$fnotnull,$fdefault,$fautoinc,$fconstraint,$funsigned);
  494. if ($widespacing) $fname = str_pad($fname,24);
  495. $lines[$fid] = $fname.' '.$ftype.$suffix;
  496. if ($fautoinc) $this->autoIncrement = true;
  497. } // foreach $flds
  498. return array($lines,$pkey);
  499. }
  500. /*
  501. GENERATE THE SIZE PART OF THE DATATYPE
  502. $ftype is the actual type
  503. $ty is the type defined originally in the DDL
  504. */
  505. function _GetSize($ftype, $ty, $fsize, $fprec)
  506. {
  507. if (strlen($fsize) && $ty != 'X' && $ty != 'B' && strpos($ftype,'(') === false) {
  508. $ftype .= "(".$fsize;
  509. if (strlen($fprec)) $ftype .= ",".$fprec;
  510. $ftype .= ')';
  511. }
  512. return $ftype;
  513. }
  514. // return string must begin with space
  515. function _CreateSuffix($fname,$ftype,$fnotnull,$fdefault,$fautoinc,$fconstraint)
  516. {
  517. $suffix = '';
  518. if (strlen($fdefault)) $suffix .= " DEFAULT $fdefault";
  519. if ($fnotnull) $suffix .= ' NOT NULL';
  520. if ($fconstraint) $suffix .= ' '.$fconstraint;
  521. return $suffix;
  522. }
  523. function _IndexSQL($idxname, $tabname, $flds, $idxoptions)
  524. {
  525. $sql = array();
  526. if ( isset($idxoptions['REPLACE']) || isset($idxoptions['DROP']) ) {
  527. $sql[] = sprintf ($this->dropIndex, $idxname);
  528. if ( isset($idxoptions['DROP']) )
  529. return $sql;
  530. }
  531. if ( empty ($flds) ) {
  532. return $sql;
  533. }
  534. $unique = isset($idxoptions['UNIQUE']) ? ' UNIQUE' : '';
  535. $s = 'CREATE' . $unique . ' INDEX ' . $idxname . ' ON ' . $tabname . ' ';
  536. if ( isset($idxoptions[$this->upperName]) )
  537. $s .= $idxoptions[$this->upperName];
  538. if ( is_array($flds) )
  539. $flds = implode(', ',$flds);
  540. $s .= '(' . $flds . ')';
  541. $sql[] = $s;
  542. return $sql;
  543. }
  544. function _DropAutoIncrement($tabname)
  545. {
  546. return false;
  547. }
  548. function _TableSQL($tabname,$lines,$pkey,$tableoptions)
  549. {
  550. $sql = array();
  551. if (isset($tableoptions['REPLACE']) || isset ($tableoptions['DROP'])) {
  552. $sql[] = sprintf($this->dropTable,$tabname);
  553. if ($this->autoIncrement) {
  554. $sInc = $this->_DropAutoIncrement($tabname);
  555. if ($sInc) $sql[] = $sInc;
  556. }
  557. if ( isset ($tableoptions['DROP']) ) {
  558. return $sql;
  559. }
  560. }
  561. $s = "CREATE TABLE $tabname (\n";
  562. $s .= implode(",\n", $lines);
  563. if (sizeof($pkey)>0) {
  564. $s .= ",\n PRIMARY KEY (";
  565. $s .= implode(", ",$pkey).")";
  566. }
  567. if (isset($tableoptions['CONSTRAINTS']))
  568. $s .= "\n".$tableoptions['CONSTRAINTS'];
  569. if (isset($tableoptions[$this->upperName.'_CONSTRAINTS']))
  570. $s .= "\n".$tableoptions[$this->upperName.'_CONSTRAINTS'];
  571. $s .= "\n)";
  572. if (isset($tableoptions[$this->upperName])) $s .= $tableoptions[$this->upperName];
  573. $sql[] = $s;
  574. return $sql;
  575. }
  576. /*
  577. GENERATE TRIGGERS IF NEEDED
  578. used when table has auto-incrementing field that is emulated using triggers
  579. */
  580. function _Triggers($tabname,$taboptions)
  581. {
  582. return array();
  583. }
  584. /*
  585. Sanitize options, so that array elements with no keys are promoted to keys
  586. */
  587. function _Options($opts)
  588. {
  589. if (!is_array($opts)) return array();
  590. $newopts = array();
  591. foreach($opts as $k => $v) {
  592. if (is_numeric($k)) $newopts[strtoupper($v)] = $v;
  593. else $newopts[strtoupper($k)] = $v;
  594. }
  595. return $newopts;
  596. }
  597. /*
  598. "Florian Buzin [ easywe ]" <florian.buzin#easywe.de>
  599. This function changes/adds new fields to your table. You don't
  600. have to know if the col is new or not. It will check on its own.
  601. */
  602. function ChangeTableSQL($tablename, $flds, $tableoptions = false)
  603. {
  604. global $ADODB_FETCH_MODE;
  605. $save = $ADODB_FETCH_MODE;
  606. $ADODB_FETCH_MODE = ADODB_FETCH_ASSOC;
  607. if ($this->connection->fetchMode !== false) $savem = $this->connection->SetFetchMode(false);
  608. // check table exists
  609. $cols = &$this->MetaColumns($tablename);
  610. if (isset($savem)) $this->connection->SetFetchMode($savem);
  611. $ADODB_FETCH_MODE = $save;
  612. if ( empty($cols)) {
  613. return $this->CreateTableSQL($tablename, $flds, $tableoptions);
  614. }
  615. if (is_array($flds)) {
  616. // Cycle through the update fields, comparing
  617. // existing fields to fields to update.
  618. // if the Metatype and size is exactly the
  619. // same, ignore - by Mark Newham
  620. $holdflds = array();
  621. foreach($flds as $k=>$v) {
  622. if ( isset($cols[$k]) && is_object($cols[$k]) ) {
  623. $c = $cols[$k];
  624. $ml = $c->max_length;
  625. $mt = &$this->MetaType($c->type,$ml);
  626. if ($ml == -1) $ml = '';
  627. if ($mt == 'X') $ml = $v['SIZE'];
  628. if (($mt != $v['TYPE']) || $ml != $v['SIZE']) {
  629. $holdflds[$k] = $v;
  630. }
  631. } else {
  632. $holdflds[$k] = $v;
  633. }
  634. }
  635. $flds = $holdflds;
  636. }
  637. // already exists, alter table instead
  638. list($lines,$pkey) = $this->_GenFields($flds);
  639. $alter = 'ALTER TABLE ' . $this->TableName($tablename);
  640. $sql = array();
  641. foreach ( $lines as $id => $v ) {
  642. if ( isset($cols[$id]) && is_object($cols[$id]) ) {
  643. $flds = Lens_ParseArgs($v,',');
  644. // We are trying to change the size of the field, if not allowed, simply ignore the request.
  645. if ($flds && in_array(strtoupper(substr($flds[0][1],0,4)),$this->invalidResizeTypes4)) continue;
  646. $sql[] = $alter . $this->alterCol . ' ' . $v;
  647. } else {
  648. $sql[] = $alter . $this->addCol . ' ' . $v;
  649. }
  650. }
  651. return $sql;
  652. }
  653. } // class
  654. ?>