datadict-generic.inc.php 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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. */
  9. // security - hide paths
  10. if (!defined('ADODB_DIR')) die();
  11. class ADODB2_generic extends ADODB_DataDict {
  12. var $databaseType = 'generic';
  13. var $seqField = false;
  14. function ActualType($meta)
  15. {
  16. switch($meta) {
  17. case 'C': return 'VARCHAR';
  18. case 'XL':
  19. case 'X': return 'VARCHAR(250)';
  20. case 'C2': return 'VARCHAR';
  21. case 'X2': return 'VARCHAR(250)';
  22. case 'B': return 'VARCHAR';
  23. case 'D': return 'DATE';
  24. case 'T': return 'DATE';
  25. case 'L': return 'DECIMAL(1)';
  26. case 'I': return 'DECIMAL(10)';
  27. case 'I1': return 'DECIMAL(3)';
  28. case 'I2': return 'DECIMAL(5)';
  29. case 'I4': return 'DECIMAL(10)';
  30. case 'I8': return 'DECIMAL(20)';
  31. case 'F': return 'DECIMAL(32,8)';
  32. case 'N': return 'DECIMAL';
  33. default:
  34. return $meta;
  35. }
  36. }
  37. function AlterColumnSQL($tabname, $flds)
  38. {
  39. if ($this->debug) ADOConnection::outp("AlterColumnSQL not supported");
  40. return array();
  41. }
  42. function DropColumnSQL($tabname, $flds)
  43. {
  44. if ($this->debug) ADOConnection::outp("DropColumnSQL not supported");
  45. return array();
  46. }
  47. }
  48. /*
  49. //db2
  50. function ActualType($meta)
  51. {
  52. switch($meta) {
  53. case 'C': return 'VARCHAR';
  54. case 'X': return 'VARCHAR';
  55. case 'C2': return 'VARCHAR'; // up to 32K
  56. case 'X2': return 'VARCHAR';
  57. case 'B': return 'BLOB';
  58. case 'D': return 'DATE';
  59. case 'T': return 'TIMESTAMP';
  60. case 'L': return 'SMALLINT';
  61. case 'I': return 'INTEGER';
  62. case 'I1': return 'SMALLINT';
  63. case 'I2': return 'SMALLINT';
  64. case 'I4': return 'INTEGER';
  65. case 'I8': return 'BIGINT';
  66. case 'F': return 'DOUBLE';
  67. case 'N': return 'DECIMAL';
  68. default:
  69. return $meta;
  70. }
  71. }
  72. // ifx
  73. function ActualType($meta)
  74. {
  75. switch($meta) {
  76. case 'C': return 'VARCHAR';// 255
  77. case 'X': return 'TEXT';
  78. case 'C2': return 'NVARCHAR';
  79. case 'X2': return 'TEXT';
  80. case 'B': return 'BLOB';
  81. case 'D': return 'DATE';
  82. case 'T': return 'DATETIME';
  83. case 'L': return 'SMALLINT';
  84. case 'I': return 'INTEGER';
  85. case 'I1': return 'SMALLINT';
  86. case 'I2': return 'SMALLINT';
  87. case 'I4': return 'INTEGER';
  88. case 'I8': return 'DECIMAL(20)';
  89. case 'F': return 'FLOAT';
  90. case 'N': return 'DECIMAL';
  91. default:
  92. return $meta;
  93. }
  94. }
  95. */
  96. ?>