oci8_forge.php 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  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 1.4.1
  36. * @filesource
  37. */
  38. defined('BASEPATH') OR exit('No direct script access allowed');
  39. /**
  40. * Oracle Forge Class
  41. *
  42. * @category Database
  43. * @author EllisLab Dev Team
  44. * @link https://codeigniter.com/user_guide/database/
  45. */
  46. class CI_DB_oci8_forge extends CI_DB_forge {
  47. /**
  48. * CREATE DATABASE statement
  49. *
  50. * @var string
  51. */
  52. protected $_create_database = FALSE;
  53. /**
  54. * CREATE TABLE IF statement
  55. *
  56. * @var string
  57. */
  58. protected $_create_table_if = FALSE;
  59. /**
  60. * DROP DATABASE statement
  61. *
  62. * @var string
  63. */
  64. protected $_drop_database = FALSE;
  65. /**
  66. * DROP TABLE IF statement
  67. *
  68. * @var string
  69. */
  70. protected $_drop_table_if = FALSE;
  71. /**
  72. * UNSIGNED support
  73. *
  74. * @var bool|array
  75. */
  76. protected $_unsigned = FALSE;
  77. /**
  78. * NULL value representation in CREATE/ALTER TABLE statements
  79. *
  80. * @var string
  81. */
  82. protected $_null = 'NULL';
  83. // --------------------------------------------------------------------
  84. /**
  85. * ALTER TABLE
  86. *
  87. * @param string $alter_type ALTER type
  88. * @param string $table Table name
  89. * @param mixed $field Column definition
  90. * @return string|string[]
  91. */
  92. protected function _alter_table($alter_type, $table, $field)
  93. {
  94. if ($alter_type === 'DROP')
  95. {
  96. return parent::_alter_table($alter_type, $table, $field);
  97. }
  98. elseif ($alter_type === 'CHANGE')
  99. {
  100. $alter_type = 'MODIFY';
  101. }
  102. $sql = 'ALTER TABLE '.$this->db->escape_identifiers($table);
  103. $sqls = array();
  104. for ($i = 0, $c = count($field); $i < $c; $i++)
  105. {
  106. if ($field[$i]['_literal'] !== FALSE)
  107. {
  108. $field[$i] = "\n\t".$field[$i]['_literal'];
  109. }
  110. else
  111. {
  112. $field[$i]['_literal'] = "\n\t".$this->_process_column($field[$i]);
  113. if ( ! empty($field[$i]['comment']))
  114. {
  115. $sqls[] = 'COMMENT ON COLUMN '
  116. .$this->db->escape_identifiers($table).'.'.$this->db->escape_identifiers($field[$i]['name'])
  117. .' IS '.$field[$i]['comment'];
  118. }
  119. if ($alter_type === 'MODIFY' && ! empty($field[$i]['new_name']))
  120. {
  121. $sqls[] = $sql.' RENAME COLUMN '.$this->db->escape_identifiers($field[$i]['name'])
  122. .' TO '.$this->db->escape_identifiers($field[$i]['new_name']);
  123. }
  124. $field[$i] = "\n\t".$field[$i]['_literal'];
  125. }
  126. }
  127. $sql .= ' '.$alter_type.' ';
  128. $sql .= (count($field) === 1)
  129. ? $field[0]
  130. : '('.implode(',', $field).')';
  131. // RENAME COLUMN must be executed after MODIFY
  132. array_unshift($sqls, $sql);
  133. return $sqls;
  134. }
  135. // --------------------------------------------------------------------
  136. /**
  137. * Field attribute AUTO_INCREMENT
  138. *
  139. * @param array &$attributes
  140. * @param array &$field
  141. * @return void
  142. */
  143. protected function _attr_auto_increment(&$attributes, &$field)
  144. {
  145. // Not supported - sequences and triggers must be used instead
  146. }
  147. // --------------------------------------------------------------------
  148. /**
  149. * Field attribute TYPE
  150. *
  151. * Performs a data type mapping between different databases.
  152. *
  153. * @param array &$attributes
  154. * @return void
  155. */
  156. protected function _attr_type(&$attributes)
  157. {
  158. switch (strtoupper($attributes['TYPE']))
  159. {
  160. case 'TINYINT':
  161. $attributes['TYPE'] = 'NUMBER';
  162. return;
  163. case 'MEDIUMINT':
  164. $attributes['TYPE'] = 'NUMBER';
  165. return;
  166. case 'INT':
  167. $attributes['TYPE'] = 'NUMBER';
  168. return;
  169. case 'BIGINT':
  170. $attributes['TYPE'] = 'NUMBER';
  171. return;
  172. default: return;
  173. }
  174. }
  175. }