123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230 |
- <?php
- defined('BASEPATH') OR exit('No direct script access allowed');
- class CI_DB_cubrid_forge extends CI_DB_forge {
-
- protected $_create_database = FALSE;
-
- protected $_create_table_keys = TRUE;
-
- protected $_drop_database = FALSE;
-
- protected $_create_table_if = FALSE;
-
- protected $_unsigned = array(
- 'SHORT' => 'INTEGER',
- 'SMALLINT' => 'INTEGER',
- 'INT' => 'BIGINT',
- 'INTEGER' => 'BIGINT',
- 'BIGINT' => 'NUMERIC',
- 'FLOAT' => 'DOUBLE',
- 'REAL' => 'DOUBLE'
- );
-
-
- protected function _alter_table($alter_type, $table, $field)
- {
- if (in_array($alter_type, array('DROP', 'ADD'), TRUE))
- {
- return parent::_alter_table($alter_type, $table, $field);
- }
- $sql = 'ALTER TABLE '.$this->db->escape_identifiers($table);
- $sqls = array();
- for ($i = 0, $c = count($field); $i < $c; $i++)
- {
- if ($field[$i]['_literal'] !== FALSE)
- {
- $sqls[] = $sql.' CHANGE '.$field[$i]['_literal'];
- }
- else
- {
- $alter_type = empty($field[$i]['new_name']) ? ' MODIFY ' : ' CHANGE ';
- $sqls[] = $sql.$alter_type.$this->_process_column($field[$i]);
- }
- }
- return $sqls;
- }
-
-
- protected function _process_column($field)
- {
- $extra_clause = isset($field['after'])
- ? ' AFTER '.$this->db->escape_identifiers($field['after']) : '';
- if (empty($extra_clause) && isset($field['first']) && $field['first'] === TRUE)
- {
- $extra_clause = ' FIRST';
- }
- return $this->db->escape_identifiers($field['name'])
- .(empty($field['new_name']) ? '' : ' '.$this->db->escape_identifiers($field['new_name']))
- .' '.$field['type'].$field['length']
- .$field['unsigned']
- .$field['null']
- .$field['default']
- .$field['auto_increment']
- .$field['unique']
- .$extra_clause;
- }
-
-
- protected function _attr_type(&$attributes)
- {
- switch (strtoupper($attributes['TYPE']))
- {
- case 'TINYINT':
- $attributes['TYPE'] = 'SMALLINT';
- $attributes['UNSIGNED'] = FALSE;
- return;
- case 'MEDIUMINT':
- $attributes['TYPE'] = 'INTEGER';
- $attributes['UNSIGNED'] = FALSE;
- return;
- case 'LONGTEXT':
- $attributes['TYPE'] = 'STRING';
- return;
- default: return;
- }
- }
-
-
- protected function _process_indexes($table)
- {
- $sql = '';
- for ($i = 0, $c = count($this->keys); $i < $c; $i++)
- {
- if (is_array($this->keys[$i]))
- {
- for ($i2 = 0, $c2 = count($this->keys[$i]); $i2 < $c2; $i2++)
- {
- if ( ! isset($this->fields[$this->keys[$i][$i2]]))
- {
- unset($this->keys[$i][$i2]);
- continue;
- }
- }
- }
- elseif ( ! isset($this->fields[$this->keys[$i]]))
- {
- unset($this->keys[$i]);
- continue;
- }
- is_array($this->keys[$i]) OR $this->keys[$i] = array($this->keys[$i]);
- $sql .= ",\n\tKEY ".$this->db->escape_identifiers(implode('_', $this->keys[$i]))
- .' ('.implode(', ', $this->db->escape_identifiers($this->keys[$i])).')';
- }
- $this->keys = array();
- return $sql;
- }
- }
|