blob: 8f8e7c5b932276d01a71ce486583b45ade427f89 [file] [log] [blame]
Andrey Andreevc0664812012-03-20 16:07:59 +02001<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
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 Andreevc0664812012-03-20 16:07:59 +02008 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05009 * Licensed under the Open Software License version 3.0
Andrey Andreevc0664812012-03-20 16:07:59 +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 */
27
Derek Allard2067d1a2008-11-13 22:59:24 +000028/**
29 * MS SQL Forge Class
30 *
31 * @category Database
Derek Jonesf4a4bd82011-10-20 12:18:42 -050032 * @author EllisLab Dev Team
Derek Allard2067d1a2008-11-13 22:59:24 +000033 * @link http://codeigniter.com/user_guide/database/
34 */
35class CI_DB_mssql_forge extends CI_DB_forge {
36
Andrey Andreevd947eba2012-04-09 14:58:28 +030037 protected $_drop_table = 'DROP TABLE %s';
Derek Allard2067d1a2008-11-13 22:59:24 +000038
39 /**
40 * Create Table
41 *
Derek Allard2067d1a2008-11-13 22:59:24 +000042 * @param string the table name
43 * @param array the fields
44 * @param mixed primary key(s)
45 * @param mixed key(s)
Andrey Andreevc0664812012-03-20 16:07:59 +020046 * @param bool should 'IF NOT EXISTS' be added to the SQL
47 * @return string
Derek Allard2067d1a2008-11-13 22:59:24 +000048 */
Andrey Andreeva0d4e412012-04-09 15:06:40 +030049 protected function _create_table($table, $fields, $primary_keys, $keys, $if_not_exists)
Derek Allard2067d1a2008-11-13 22:59:24 +000050 {
51 $sql = 'CREATE TABLE ';
Barry Mienydd671972010-10-04 16:33:58 +020052
Derek Allard2067d1a2008-11-13 22:59:24 +000053 if ($if_not_exists === TRUE)
54 {
55 $sql .= 'IF NOT EXISTS ';
56 }
Barry Mienydd671972010-10-04 16:33:58 +020057
Andrey Andreevea09a8a2012-04-06 20:50:07 +030058 $sql .= $this->db->escape_identifiers($table).' (';
Derek Allard2067d1a2008-11-13 22:59:24 +000059 $current_field_count = 0;
60
Andrey Andreevc0664812012-03-20 16:07:59 +020061 foreach ($fields as $field => $attributes)
Derek Allard2067d1a2008-11-13 22:59:24 +000062 {
63 // Numeric field names aren't allowed in databases, so if the key is
64 // numeric, we know it was assigned by PHP and the developer manually
65 // entered the field information, so we'll simply add it to the list
66 if (is_numeric($field))
67 {
68 $sql .= "\n\t$attributes";
69 }
70 else
71 {
72 $attributes = array_change_key_case($attributes, CASE_UPPER);
Barry Mienydd671972010-10-04 16:33:58 +020073
Andrey Andreev032e7ea2012-03-06 19:48:35 +020074 $sql .= "\n\t".$this->db->protect_identifiers($field);
Barry Mienydd671972010-10-04 16:33:58 +020075
Derek Jones37f4b9c2011-07-01 17:56:50 -050076 $sql .= ' '.$attributes['TYPE'];
Barry Mienydd671972010-10-04 16:33:58 +020077
Derek Allard2067d1a2008-11-13 22:59:24 +000078 if (array_key_exists('CONSTRAINT', $attributes))
79 {
80 $sql .= '('.$attributes['CONSTRAINT'].')';
81 }
Barry Mienydd671972010-10-04 16:33:58 +020082
Derek Allard2067d1a2008-11-13 22:59:24 +000083 if (array_key_exists('UNSIGNED', $attributes) && $attributes['UNSIGNED'] === TRUE)
84 {
85 $sql .= ' UNSIGNED';
86 }
Barry Mienydd671972010-10-04 16:33:58 +020087
Derek Allard2067d1a2008-11-13 22:59:24 +000088 if (array_key_exists('DEFAULT', $attributes))
89 {
90 $sql .= ' DEFAULT \''.$attributes['DEFAULT'].'\'';
91 }
Barry Mienydd671972010-10-04 16:33:58 +020092
Derek Allard2067d1a2008-11-13 22:59:24 +000093 if (array_key_exists('NULL', $attributes) && $attributes['NULL'] === TRUE)
94 {
95 $sql .= ' NULL';
96 }
97 else
98 {
Barry Mienydd671972010-10-04 16:33:58 +020099 $sql .= ' NOT NULL';
Derek Allard2067d1a2008-11-13 22:59:24 +0000100 }
Barry Mienydd671972010-10-04 16:33:58 +0200101
Derek Allard2067d1a2008-11-13 22:59:24 +0000102 if (array_key_exists('AUTO_INCREMENT', $attributes) && $attributes['AUTO_INCREMENT'] === TRUE)
103 {
104 $sql .= ' AUTO_INCREMENT';
105 }
106 }
Barry Mienydd671972010-10-04 16:33:58 +0200107
Derek Allard2067d1a2008-11-13 22:59:24 +0000108 // don't add a comma on the end of the last field
109 if (++$current_field_count < count($fields))
110 {
111 $sql .= ',';
112 }
113 }
114
115 if (count($primary_keys) > 0)
116 {
Andrey Andreev032e7ea2012-03-06 19:48:35 +0200117 $primary_keys = $this->db->protect_identifiers($primary_keys);
Derek Allard2067d1a2008-11-13 22:59:24 +0000118 $sql .= ",\n\tPRIMARY KEY (" . implode(', ', $primary_keys) . ")";
119 }
Barry Mienydd671972010-10-04 16:33:58 +0200120
Derek Allard2067d1a2008-11-13 22:59:24 +0000121 if (is_array($keys) && count($keys) > 0)
122 {
123 foreach ($keys as $key)
124 {
125 if (is_array($key))
126 {
Andrey Andreev032e7ea2012-03-06 19:48:35 +0200127 $key = $this->db->protect_identifiers($key);
Derek Allard2067d1a2008-11-13 22:59:24 +0000128 }
129 else
130 {
Andrey Andreev032e7ea2012-03-06 19:48:35 +0200131 $key = array($this->db->protect_identifiers($key));
Derek Allard2067d1a2008-11-13 22:59:24 +0000132 }
Barry Mienydd671972010-10-04 16:33:58 +0200133
Derek Allard2067d1a2008-11-13 22:59:24 +0000134 $sql .= ",\n\tFOREIGN KEY (" . implode(', ', $key) . ")";
135 }
136 }
Barry Mienydd671972010-10-04 16:33:58 +0200137
Derek Allard2067d1a2008-11-13 22:59:24 +0000138 $sql .= "\n)";
139
140 return $sql;
141 }
142
143 // --------------------------------------------------------------------
144
145 /**
146 * Alter table query
147 *
148 * Generates a platform-specific query so that a table can be altered
149 * Called by add_column(), drop_column(), and column_alter(),
150 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000151 * @param string the ALTER type (ADD, DROP, CHANGE)
152 * @param string the column name
153 * @param string the table name
154 * @param string the column definition
155 * @param string the default value
Andrey Andreevc0664812012-03-20 16:07:59 +0200156 * @param bool should 'NOT NULL' be added
Derek Allard2067d1a2008-11-13 22:59:24 +0000157 * @param string the field after which we should add the new field
Andrey Andreevc0664812012-03-20 16:07:59 +0200158 * @return string
Derek Allard2067d1a2008-11-13 22:59:24 +0000159 */
Andrey Andreeva0d4e412012-04-09 15:06:40 +0300160 protected function _alter_table($alter_type, $table, $column_name, $column_definition = '', $default_value = '', $null = '', $after_field = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000161 {
Andrey Andreev032e7ea2012-03-06 19:48:35 +0200162 $sql = 'ALTER TABLE '.$this->db->protect_identifiers($table).' '.$alter_type.' '.$this->db->protect_identifiers($column_name);
Derek Allard2067d1a2008-11-13 22:59:24 +0000163
164 // DROP has everything it needs now.
165 if ($alter_type == 'DROP')
166 {
167 return $sql;
168 }
169
170 $sql .= " $column_definition";
171
172 if ($default_value != '')
173 {
174 $sql .= " DEFAULT \"$default_value\"";
175 }
176
177 if ($null === NULL)
178 {
179 $sql .= ' NULL';
180 }
181 else
182 {
183 $sql .= ' NOT NULL';
184 }
185
186 if ($after_field != '')
187 {
Andrey Andreev032e7ea2012-03-06 19:48:35 +0200188 return $sql.' AFTER '.$this->db->protect_identifiers($after_field);
Derek Allard2067d1a2008-11-13 22:59:24 +0000189 }
Barry Mienydd671972010-10-04 16:33:58 +0200190
Derek Allard2067d1a2008-11-13 22:59:24 +0000191 return $sql;
Barry Mienydd671972010-10-04 16:33:58 +0200192
Derek Allard2067d1a2008-11-13 22:59:24 +0000193 }
194
Derek Allard2067d1a2008-11-13 22:59:24 +0000195}
196
197/* End of file mssql_forge.php */
Timothy Warren215890b2012-03-20 09:38:16 -0400198/* Location: ./system/database/drivers/mssql/mssql_forge.php */