blob: 699ce996c6036dbe9029485f7dfc85bc6abd0d0b [file] [log] [blame]
Andrey Andreevc5536aa2012-11-01 17:33:58 +02001<?php
Derek Allard2067d1a2008-11-13 22:59:24 +00002/**
3 * CodeIgniter
4 *
Phil Sturgeon07c1ac82012-03-09 17:03:37 +00005 * An open source application development framework for PHP 5.2.4 or newer
Derek Allard2067d1a2008-11-13 22:59:24 +00006 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05007 * NOTICE OF LICENSE
Andrey Andreevb76029d2012-01-26 15:13:19 +02008 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05009 * Licensed under the Open Software License version 3.0
Andrey Andreevb76029d2012-01-26 15:13:19 +020010 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -050011 * This source file is subject to the Open Software License (OSL 3.0) that is
12 * bundled with this package in the files license.txt / license.rst. It is
13 * also available through the world wide web at this URL:
14 * http://opensource.org/licenses/OSL-3.0
15 * If you did not receive a copy of the license and are unable to obtain it
16 * through the world wide web, please send an email to
17 * licensing@ellislab.com so we can send you a copy immediately.
18 *
Derek Allard2067d1a2008-11-13 22:59:24 +000019 * @package CodeIgniter
Derek Jonesf4a4bd82011-10-20 12:18:42 -050020 * @author EllisLab Dev Team
Greg Aker0defe5d2012-01-01 18:46:41 -060021 * @copyright Copyright (c) 2008 - 2012, EllisLab, Inc. (http://ellislab.com/)
Derek Jonesf4a4bd82011-10-20 12:18:42 -050022 * @license http://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
Derek Allard2067d1a2008-11-13 22:59:24 +000023 * @link http://codeigniter.com
24 * @since Version 1.0
25 * @filesource
26 */
Andrey Andreevc5536aa2012-11-01 17:33:58 +020027defined('BASEPATH') OR exit('No direct script access allowed');
Derek Allard2067d1a2008-11-13 22:59:24 +000028
Derek Allard2067d1a2008-11-13 22:59:24 +000029/**
30 * ODBC Forge Class
31 *
32 * @category Database
Derek Jonesf4a4bd82011-10-20 12:18:42 -050033 * @author EllisLab Dev Team
Derek Allard2067d1a2008-11-13 22:59:24 +000034 * @link http://codeigniter.com/database/
35 */
36class CI_DB_odbc_forge extends CI_DB_forge {
37
Andrey Andreevc98e93a2012-11-02 02:04:59 +020038 /**
39 * DROP TABLE statement
40 *
41 * @var string
42 */
Andrey Andreevd947eba2012-04-09 14:58:28 +030043 protected $_drop_table = 'DROP TABLE %s';
Derek Allard2067d1a2008-11-13 22:59:24 +000044
Andrey Andreevc98e93a2012-11-02 02:04:59 +020045 // --------------------------------------------------------------------
46
Derek Allard2067d1a2008-11-13 22:59:24 +000047 /**
48 * Create Table
49 *
Derek Allard2067d1a2008-11-13 22:59:24 +000050 * @param string the table name
51 * @param array the fields
52 * @param mixed primary key(s)
53 * @param mixed key(s)
Andrey Andreev9a8a1112012-03-20 14:37:23 +020054 * @param bool should 'IF NOT EXISTS' be added to the SQL
Derek Allard2067d1a2008-11-13 22:59:24 +000055 * @return bool
56 */
Andrey Andreeva0d4e412012-04-09 15:06:40 +030057 protected function _create_table($table, $fields, $primary_keys, $keys, $if_not_exists)
Derek Allard2067d1a2008-11-13 22:59:24 +000058 {
59 $sql = 'CREATE TABLE ';
Barry Mienydd671972010-10-04 16:33:58 +020060
Derek Allard2067d1a2008-11-13 22:59:24 +000061 if ($if_not_exists === TRUE)
62 {
63 $sql .= 'IF NOT EXISTS ';
64 }
Barry Mienydd671972010-10-04 16:33:58 +020065
Andrey Andreevea09a8a2012-04-06 20:50:07 +030066 $sql .= $this->db->escape_identifiers($table).' (';
Derek Allard2067d1a2008-11-13 22:59:24 +000067 $current_field_count = 0;
68
Andrey Andreevb76029d2012-01-26 15:13:19 +020069 foreach ($fields as $field => $attributes)
Derek Allard2067d1a2008-11-13 22:59:24 +000070 {
71 // Numeric field names aren't allowed in databases, so if the key is
72 // numeric, we know it was assigned by PHP and the developer manually
73 // entered the field information, so we'll simply add it to the list
74 if (is_numeric($field))
75 {
Andrey Andreevb76029d2012-01-26 15:13:19 +020076 $sql .= "\n\t".$attributes;
Derek Allard2067d1a2008-11-13 22:59:24 +000077 }
78 else
79 {
80 $attributes = array_change_key_case($attributes, CASE_UPPER);
Barry Mienydd671972010-10-04 16:33:58 +020081
Andrey Andreevfeec9db2012-06-07 22:34:38 +030082 $sql .= "\n\t".$this->db->escape_identifiers($field).' '.$attributes['TYPE'];
Barry Mienydd671972010-10-04 16:33:58 +020083
Andrey Andreevfeec9db2012-06-07 22:34:38 +030084 empty($attributes['CONSTRAINT']) OR $sql .= '('.$attributes['CONSTRAINT'].')';
Barry Mienydd671972010-10-04 16:33:58 +020085
Andrey Andreevfeec9db2012-06-07 22:34:38 +030086 if ( ! empty($attributes['UNSIGNED']) && $attributes['UNSIGNED'] === TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +000087 {
88 $sql .= ' UNSIGNED';
89 }
Barry Mienydd671972010-10-04 16:33:58 +020090
Andrey Andreevfeec9db2012-06-07 22:34:38 +030091 if (isset($attributes['DEFAULT']))
Derek Allard2067d1a2008-11-13 22:59:24 +000092 {
Andrey Andreevfeec9db2012-06-07 22:34:38 +030093 $sql .= " DEFAULT '".$attributes['DEFAULT']."'";
Derek Allard2067d1a2008-11-13 22:59:24 +000094 }
Barry Mienydd671972010-10-04 16:33:58 +020095
Andrey Andreevfeec9db2012-06-07 22:34:38 +030096 $sql .= ( ! empty($attributes['NULL']) && $attributes['NULL'] === TRUE)
97 ? ' NULL' : ' NOT NULL';
Barry Mienydd671972010-10-04 16:33:58 +020098
Andrey Andreevfeec9db2012-06-07 22:34:38 +030099 if ( ! empty($attributes['AUTO_INCREMENT']) && $attributes['AUTO_INCREMENT'] === TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000100 {
101 $sql .= ' AUTO_INCREMENT';
102 }
103 }
Barry Mienydd671972010-10-04 16:33:58 +0200104
Derek Allard2067d1a2008-11-13 22:59:24 +0000105 // don't add a comma on the end of the last field
106 if (++$current_field_count < count($fields))
107 {
108 $sql .= ',';
109 }
110 }
111
112 if (count($primary_keys) > 0)
113 {
Andrey Andreev9637b402012-06-08 15:39:24 +0300114 $sql .= ",\n\tPRIMARY KEY (".implode(', ', $this->escape_identifiers($primary_keys)).')';
Derek Allard2067d1a2008-11-13 22:59:24 +0000115 }
Barry Mienydd671972010-10-04 16:33:58 +0200116
Derek Allard2067d1a2008-11-13 22:59:24 +0000117 if (is_array($keys) && count($keys) > 0)
118 {
119 foreach ($keys as $key)
120 {
Andrey Andreevfeec9db2012-06-07 22:34:38 +0300121 $key = is_array($key)
Andrey Andreev9637b402012-06-08 15:39:24 +0300122 ? $this->db->escape_identifiers($key)
Andrey Andreevfeec9db2012-06-07 22:34:38 +0300123 : array($this->db->escape_identifiers($key));
Barry Mienydd671972010-10-04 16:33:58 +0200124
Andrey Andreevb76029d2012-01-26 15:13:19 +0200125 $sql .= ",\n\tFOREIGN KEY (".implode(', ', $key).')';
Derek Allard2067d1a2008-11-13 22:59:24 +0000126 }
127 }
Barry Mienydd671972010-10-04 16:33:58 +0200128
Andrey Andreevb76029d2012-01-26 15:13:19 +0200129 return $sql."\n)";
Derek Allard2067d1a2008-11-13 22:59:24 +0000130 }
131
132 // --------------------------------------------------------------------
133
134 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000135 * Alter table query
136 *
137 * Generates a platform-specific query so that a table can be altered
138 * Called by add_column(), drop_column(), and column_alter(),
139 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000140 * @param string the ALTER type (ADD, DROP, CHANGE)
141 * @param string the column name
142 * @param string the table name
143 * @param string the column definition
144 * @param string the default value
Andrey Andreevb76029d2012-01-26 15:13:19 +0200145 * @param bool should 'NOT NULL' be added
Derek Allard2067d1a2008-11-13 22:59:24 +0000146 * @param string the field after which we should add the new field
Andrey Andreevb76029d2012-01-26 15:13:19 +0200147 * @return string
Derek Allard2067d1a2008-11-13 22:59:24 +0000148 */
Andrey Andreeva0d4e412012-04-09 15:06:40 +0300149 protected function _alter_table($alter_type, $table, $column_name, $column_definition = '', $default_value = '', $null = '', $after_field = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000150 {
Andrey Andreevfeec9db2012-06-07 22:34:38 +0300151 $sql = 'ALTER TABLE '.$this->db->escape_identifiers($table).' '.$alter_type.' '.$this->db->escape_identifiers($column_name);
Derek Allard2067d1a2008-11-13 22:59:24 +0000152
153 // DROP has everything it needs now.
Andrey Andreevb76029d2012-01-26 15:13:19 +0200154 if ($alter_type === 'DROP')
Derek Allard2067d1a2008-11-13 22:59:24 +0000155 {
156 return $sql;
157 }
158
Andrey Andreevb76029d2012-01-26 15:13:19 +0200159 return $sql.' '.$column_definition
160 .($default_value != '' ? ' DEFAULT "'.$default_value.'"' : '')
161 .($null === NULL ? ' NULL' : ' NOT NULL')
Andrey Andreevfeec9db2012-06-07 22:34:38 +0300162 .($after_field != '' ? ' AFTER '.$this->db->escape_identifiers($after_field) : '');
Derek Allard2067d1a2008-11-13 22:59:24 +0000163 }
164
Derek Allard2067d1a2008-11-13 22:59:24 +0000165}
166
167/* End of file odbc_forge.php */
Andrey Andreev19aee032012-03-20 15:31:42 +0200168/* Location: ./system/database/drivers/odbc/odbc_forge.php */