blob: 1367ddc776e451d619530d1d7946bc7a70babde5 [file] [log] [blame]
Andrey Andreev0e8968a2012-01-26 02:04:37 +02001<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
Alex Bilbie84445d02011-03-10 16:43:39 +00002/**
3 * CodeIgniter
4 *
5 * An open source application development framework for PHP 5.1.6 or newer
6 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05007 * NOTICE OF LICENSE
Andrey Andreev0e8968a2012-01-26 02:04:37 +02008 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05009 * Licensed under the Open Software License version 3.0
Andrey Andreev0e8968a2012-01-26 02:04:37 +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 *
Alex Bilbie84445d02011-03-10 16:43:39 +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)
Alex Bilbie84445d02011-03-10 16:43:39 +000023 * @link http://codeigniter.com
24 * @since Version 1.0
25 * @filesource
26 */
27
Alex Bilbie84445d02011-03-10 16:43:39 +000028/**
Alex Bilbie01ab0042011-03-18 19:24:30 +000029 * SQLSRV Forge Class
Alex Bilbie84445d02011-03-10 16:43:39 +000030 *
31 * @category Database
Derek Jonesf4a4bd82011-10-20 12:18:42 -050032 * @author EllisLab Dev Team
Alex Bilbie84445d02011-03-10 16:43:39 +000033 * @link http://codeigniter.com/user_guide/database/
34 */
Alex Bilbie01ab0042011-03-18 19:24:30 +000035class CI_DB_sqlsrv_forge extends CI_DB_forge {
Alex Bilbie84445d02011-03-10 16:43:39 +000036
37 /**
38 * Create database
39 *
Alex Bilbie84445d02011-03-10 16:43:39 +000040 * @param string the database name
Andrey Andreev0e8968a2012-01-26 02:04:37 +020041 * @return string
Alex Bilbie84445d02011-03-10 16:43:39 +000042 */
Andrey Andreev0e8968a2012-01-26 02:04:37 +020043 public function _create_database($name)
Alex Bilbie84445d02011-03-10 16:43:39 +000044 {
Andrey Andreev0e8968a2012-01-26 02:04:37 +020045 return 'CREATE DATABASE '.$name;
Alex Bilbie84445d02011-03-10 16:43:39 +000046 }
47
48 // --------------------------------------------------------------------
49
50 /**
51 * Drop database
52 *
Alex Bilbie84445d02011-03-10 16:43:39 +000053 * @param string the database name
Andrey Andreev0e8968a2012-01-26 02:04:37 +020054 * @return string
Alex Bilbie84445d02011-03-10 16:43:39 +000055 */
Andrey Andreev0e8968a2012-01-26 02:04:37 +020056 public function _drop_database($name)
Alex Bilbie84445d02011-03-10 16:43:39 +000057 {
Andrey Andreev0e8968a2012-01-26 02:04:37 +020058 return 'DROP DATABASE '.$name;
Alex Bilbie84445d02011-03-10 16:43:39 +000059 }
60
61 // --------------------------------------------------------------------
62
63 /**
64 * Drop Table
65 *
Andrey Andreev0e8968a2012-01-26 02:04:37 +020066 * @param string the table name
67 * @return string
Alex Bilbie84445d02011-03-10 16:43:39 +000068 */
Andrey Andreev0e8968a2012-01-26 02:04:37 +020069 public function _drop_table($table)
Alex Bilbie84445d02011-03-10 16:43:39 +000070 {
Andrey Andreev0e8968a2012-01-26 02:04:37 +020071 return 'DROP TABLE '.$this->db->_escape_identifiers($table);
Alex Bilbie84445d02011-03-10 16:43:39 +000072 }
73
74 // --------------------------------------------------------------------
75
76 /**
77 * Create Table
78 *
Alex Bilbie84445d02011-03-10 16:43:39 +000079 * @param string the table name
80 * @param array the fields
81 * @param mixed primary key(s)
82 * @param mixed key(s)
Andrey Andreev0e8968a2012-01-26 02:04:37 +020083 * @param bool should 'IF NOT EXISTS' be added to the SQL
84 * @return string
Alex Bilbie84445d02011-03-10 16:43:39 +000085 */
Andrey Andreev0e8968a2012-01-26 02:04:37 +020086 public function _create_table($table, $fields, $primary_keys, $keys, $if_not_exists)
Alex Bilbie84445d02011-03-10 16:43:39 +000087 {
88 $sql = 'CREATE TABLE ';
89
90 if ($if_not_exists === TRUE)
91 {
92 $sql .= 'IF NOT EXISTS ';
93 }
94
Andrey Andreev0e8968a2012-01-26 02:04:37 +020095 $sql .= $this->db->_escape_identifiers($table).' (';
Alex Bilbie84445d02011-03-10 16:43:39 +000096 $current_field_count = 0;
97
Andrey Andreev0e8968a2012-01-26 02:04:37 +020098 foreach ($fields as $field => $attributes)
Alex Bilbie84445d02011-03-10 16:43:39 +000099 {
100 // Numeric field names aren't allowed in databases, so if the key is
101 // numeric, we know it was assigned by PHP and the developer manually
102 // entered the field information, so we'll simply add it to the list
103 if (is_numeric($field))
104 {
Andrey Andreev0e8968a2012-01-26 02:04:37 +0200105 $sql .= "\n\t".$attributes;
Alex Bilbie84445d02011-03-10 16:43:39 +0000106 }
107 else
108 {
109 $attributes = array_change_key_case($attributes, CASE_UPPER);
110
Andrey Andreev0e8968a2012-01-26 02:04:37 +0200111 $sql .= "\n\t".$this->db->protect_identifiers($field)
112 .' '.$attributes['TYPE']
113 .(array_key_exists('CONSTRAINT', $attributes) ? '('.$attributes['CONSTRAINT'].')' : '')
114 .((array_key_exists('UNSIGNED', $attributes) && $attributes['UNSIGNED'] === TRUE) ? ' UNSIGNED' : '')
115 .(array_key_exists('DEFAULT', $attributes) ? ' DEFAULT \''.$attributes['DEFAULT'].'\'' : '')
116 .((array_key_exists('NULL', $attributes) && $attributes['NULL'] === TRUE) ? ' NULL' : ' NOT NULL')
117 .((array_key_exists('AUTO_INCREMENT', $attributes) && $attributes['AUTO_INCREMENT'] === TRUE) ? ' AUTO_INCREMENT' : '');
Alex Bilbie84445d02011-03-10 16:43:39 +0000118 }
119
120 // don't add a comma on the end of the last field
121 if (++$current_field_count < count($fields))
122 {
123 $sql .= ',';
124 }
125 }
126
127 if (count($primary_keys) > 0)
128 {
Andrey Andreev0e8968a2012-01-26 02:04:37 +0200129 $primary_keys = $this->db->protect_identifiers($primary_keys);
130 $sql .= ",\n\tPRIMARY KEY (".implode(', ', $primary_keys).')';
Alex Bilbie84445d02011-03-10 16:43:39 +0000131 }
132
133 if (is_array($keys) && count($keys) > 0)
134 {
135 foreach ($keys as $key)
136 {
137 if (is_array($key))
138 {
Andrey Andreev0e8968a2012-01-26 02:04:37 +0200139 $key = $this->db->protect_identifiers($key);
Alex Bilbie84445d02011-03-10 16:43:39 +0000140 }
141 else
142 {
Andrey Andreev0e8968a2012-01-26 02:04:37 +0200143 $key = array($this->db->protect_identifiers($key));
Alex Bilbie84445d02011-03-10 16:43:39 +0000144 }
145
Andrey Andreev0e8968a2012-01-26 02:04:37 +0200146 $sql .= ",\n\tFOREIGN KEY (".implode(', ', $key).')';
Alex Bilbie84445d02011-03-10 16:43:39 +0000147 }
148 }
149
Andrey Andreev0e8968a2012-01-26 02:04:37 +0200150 return $sql."\n)";
Alex Bilbie84445d02011-03-10 16:43:39 +0000151 }
152
153 // --------------------------------------------------------------------
154
155 /**
156 * Alter table query
157 *
158 * Generates a platform-specific query so that a table can be altered
159 * Called by add_column(), drop_column(), and column_alter(),
160 *
Alex Bilbie84445d02011-03-10 16:43:39 +0000161 * @param string the ALTER type (ADD, DROP, CHANGE)
162 * @param string the column name
163 * @param string the table name
164 * @param string the column definition
165 * @param string the default value
166 * @param boolean should 'NOT NULL' be added
167 * @param string the field after which we should add the new field
168 * @return object
169 */
Andrey Andreev0e8968a2012-01-26 02:04:37 +0200170 public function _alter_table($alter_type, $table, $column_name, $column_definition = '', $default_value = '', $null = '', $after_field = '')
Alex Bilbie84445d02011-03-10 16:43:39 +0000171 {
Andrey Andreev0e8968a2012-01-26 02:04:37 +0200172 $sql = 'ALTER TABLE '.$this->db->_protect_identifiers($table).' '.$alter_type.' '.$this->db->_protect_identifiers($column_name);
Alex Bilbie84445d02011-03-10 16:43:39 +0000173
174 // DROP has everything it needs now.
175 if ($alter_type == 'DROP')
176 {
177 return $sql;
178 }
179
Andrey Andreev0e8968a2012-01-26 02:04:37 +0200180 return $sql.' '.$column_definition
181 .($default_value != '' ? ' DEFAULT "'.$default_value.'"' : '')
182 .($null === NULL ? ' NULL' : ' NOT NULL')
183 .($after_field != '' ? ' AFTER '.$this->db->protect_identifiers($after_field) : '');
Alex Bilbie84445d02011-03-10 16:43:39 +0000184 }
185
186 // --------------------------------------------------------------------
187
188 /**
189 * Rename a table
190 *
191 * Generates a platform-specific query so that a table can be renamed
192 *
Alex Bilbie84445d02011-03-10 16:43:39 +0000193 * @param string the old table name
194 * @param string the new table name
195 * @return string
196 */
Andrey Andreev0e8968a2012-01-26 02:04:37 +0200197 public function _rename_table($table_name, $new_table_name)
Alex Bilbie84445d02011-03-10 16:43:39 +0000198 {
199 // I think this syntax will work, but can find little documentation on renaming tables in MSSQL
Andrey Andreev0e8968a2012-01-26 02:04:37 +0200200 return 'ALTER TABLE '.$this->db->protect_identifiers($table_name).' RENAME TO '.$this->db->protect_identifiers($new_table_name);
Alex Bilbie84445d02011-03-10 16:43:39 +0000201 }
202
203}
204
Andrey Andreev0e8968a2012-01-26 02:04:37 +0200205/* End of file sqlsrv_forge.php */
206/* Location: ./system/database/drivers/sqlsrv/sqlsrv_forge.php */