pdo_4d_forge.php 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. <?php
  2. /**
  3. * CodeIgniter
  4. *
  5. * An open source application development framework for PHP
  6. *
  7. * This content is released under the MIT License (MIT)
  8. *
  9. * Copyright (c) 2014 - 2019, British Columbia Institute of Technology
  10. *
  11. * Permission is hereby granted, free of charge, to any person obtaining a copy
  12. * of this software and associated documentation files (the "Software"), to deal
  13. * in the Software without restriction, including without limitation the rights
  14. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  15. * copies of the Software, and to permit persons to whom the Software is
  16. * furnished to do so, subject to the following conditions:
  17. *
  18. * The above copyright notice and this permission notice shall be included in
  19. * all copies or substantial portions of the Software.
  20. *
  21. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  22. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  23. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  24. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  25. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  26. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  27. * THE SOFTWARE.
  28. *
  29. * @package CodeIgniter
  30. * @author EllisLab Dev Team
  31. * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
  32. * @copyright Copyright (c) 2014 - 2019, British Columbia Institute of Technology (https://bcit.ca/)
  33. * @license https://opensource.org/licenses/MIT MIT License
  34. * @link https://codeigniter.com
  35. * @since Version 3.0.0
  36. * @filesource
  37. */
  38. defined('BASEPATH') OR exit('No direct script access allowed');
  39. /**
  40. * PDO 4D Forge Class
  41. *
  42. * @category Database
  43. * @author EllisLab Dev Team
  44. * @link https://codeigniter.com/user_guide/database/
  45. */
  46. class CI_DB_pdo_4d_forge extends CI_DB_pdo_forge {
  47. /**
  48. * CREATE DATABASE statement
  49. *
  50. * @var string
  51. */
  52. protected $_create_database = 'CREATE SCHEMA %s';
  53. /**
  54. * DROP DATABASE statement
  55. *
  56. * @var string
  57. */
  58. protected $_drop_database = 'DROP SCHEMA %s';
  59. /**
  60. * CREATE TABLE IF statement
  61. *
  62. * @var string
  63. */
  64. protected $_create_table_if = 'CREATE TABLE IF NOT EXISTS';
  65. /**
  66. * RENAME TABLE statement
  67. *
  68. * @var string
  69. */
  70. protected $_rename_table = FALSE;
  71. /**
  72. * DROP TABLE IF statement
  73. *
  74. * @var string
  75. */
  76. protected $_drop_table_if = 'DROP TABLE IF EXISTS';
  77. /**
  78. * UNSIGNED support
  79. *
  80. * @var array
  81. */
  82. protected $_unsigned = array(
  83. 'INT16' => 'INT',
  84. 'SMALLINT' => 'INT',
  85. 'INT' => 'INT64',
  86. 'INT32' => 'INT64'
  87. );
  88. /**
  89. * DEFAULT value representation in CREATE/ALTER TABLE statements
  90. *
  91. * @var string
  92. */
  93. protected $_default = FALSE;
  94. // --------------------------------------------------------------------
  95. /**
  96. * ALTER TABLE
  97. *
  98. * @param string $alter_type ALTER type
  99. * @param string $table Table name
  100. * @param mixed $field Column definition
  101. * @return string|string[]
  102. */
  103. protected function _alter_table($alter_type, $table, $field)
  104. {
  105. if (in_array($alter_type, array('ADD', 'DROP'), TRUE))
  106. {
  107. return parent::_alter_table($alter_type, $table, $field);
  108. }
  109. // No method of modifying columns is supported
  110. return FALSE;
  111. }
  112. // --------------------------------------------------------------------
  113. /**
  114. * Process column
  115. *
  116. * @param array $field
  117. * @return string
  118. */
  119. protected function _process_column($field)
  120. {
  121. return $this->db->escape_identifiers($field['name'])
  122. .' '.$field['type'].$field['length']
  123. .$field['null']
  124. .$field['unique']
  125. .$field['auto_increment'];
  126. }
  127. // --------------------------------------------------------------------
  128. /**
  129. * Field attribute TYPE
  130. *
  131. * Performs a data type mapping between different databases.
  132. *
  133. * @param array &$attributes
  134. * @return void
  135. */
  136. protected function _attr_type(&$attributes)
  137. {
  138. switch (strtoupper($attributes['TYPE']))
  139. {
  140. case 'TINYINT':
  141. $attributes['TYPE'] = 'SMALLINT';
  142. $attributes['UNSIGNED'] = FALSE;
  143. return;
  144. case 'MEDIUMINT':
  145. $attributes['TYPE'] = 'INTEGER';
  146. $attributes['UNSIGNED'] = FALSE;
  147. return;
  148. case 'INTEGER':
  149. $attributes['TYPE'] = 'INT';
  150. return;
  151. case 'BIGINT':
  152. $attributes['TYPE'] = 'INT64';
  153. return;
  154. default: return;
  155. }
  156. }
  157. // --------------------------------------------------------------------
  158. /**
  159. * Field attribute UNIQUE
  160. *
  161. * @param array &$attributes
  162. * @param array &$field
  163. * @return void
  164. */
  165. protected function _attr_unique(&$attributes, &$field)
  166. {
  167. if ( ! empty($attributes['UNIQUE']) && $attributes['UNIQUE'] === TRUE)
  168. {
  169. $field['unique'] = ' UNIQUE';
  170. // UNIQUE must be used with NOT NULL
  171. $field['null'] = ' NOT NULL';
  172. }
  173. }
  174. // --------------------------------------------------------------------
  175. /**
  176. * Field attribute AUTO_INCREMENT
  177. *
  178. * @param array &$attributes
  179. * @param array &$field
  180. * @return void
  181. */
  182. protected function _attr_auto_increment(&$attributes, &$field)
  183. {
  184. if ( ! empty($attributes['AUTO_INCREMENT']) && $attributes['AUTO_INCREMENT'] === TRUE)
  185. {
  186. if (stripos($field['type'], 'int') !== FALSE)
  187. {
  188. $field['auto_increment'] = ' AUTO_INCREMENT';
  189. }
  190. elseif (strcasecmp($field['type'], 'UUID') === 0)
  191. {
  192. $field['auto_increment'] = ' AUTO_GENERATE';
  193. }
  194. }
  195. }
  196. }