blob: c817c2c5d9547e8db31526c719a691ab0202e44f [file] [log] [blame]
Andrey Andreev4d116712012-03-20 16:30:57 +02001<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
Alex Bilbie84445d02011-03-10 16:43:39 +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
Alex Bilbie84445d02011-03-10 16:43:39 +00006 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05007 * NOTICE OF LICENSE
Andrey Andreev4d116712012-03-20 16:30:57 +02008 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05009 * Licensed under the Open Software License version 3.0
Andrey Andreev4d116712012-03-20 16:30:57 +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
Andrey Andreevd947eba2012-04-09 14:58:28 +030037 protected $_drop_table = 'DROP TABLE %s';
Alex Bilbie84445d02011-03-10 16:43:39 +000038
39 /**
40 * Create Table
41 *
Alex Bilbie84445d02011-03-10 16:43:39 +000042 * @param string the table name
43 * @param array the fields
44 * @param mixed primary key(s)
45 * @param mixed key(s)
Andrey Andreev4d116712012-03-20 16:30:57 +020046 * @param bool should 'IF NOT EXISTS' be added to the SQL
Alex Bilbie84445d02011-03-10 16:43:39 +000047 * @return bool
48 */
Andrey Andreeva0d4e412012-04-09 15:06:40 +030049 protected function _create_table($table, $fields, $primary_keys, $keys, $if_not_exists)
Alex Bilbie84445d02011-03-10 16:43:39 +000050 {
Andrey Andreev650f2a22012-05-26 18:56:29 +030051 $sql = ($if_not_exists === TRUE)
52 ? "IF NOT EXISTS (SELECT * FROM sysobjects WHERE ID = object_id(N'".$table."') AND OBJECTPROPERTY(id, N'IsUserTable') = 1)\n"
53 : '';
Alex Bilbie84445d02011-03-10 16:43:39 +000054
Andrey Andreev650f2a22012-05-26 18:56:29 +030055 $sql .= 'CREATE TABLE '.$this->db->escape_identifiers($table).' (';
Alex Bilbie84445d02011-03-10 16:43:39 +000056
Alex Bilbie84445d02011-03-10 16:43:39 +000057 $current_field_count = 0;
Andrey Andreev4d116712012-03-20 16:30:57 +020058 foreach ($fields as $field => $attributes)
Alex Bilbie84445d02011-03-10 16:43:39 +000059 {
60 // Numeric field names aren't allowed in databases, so if the key is
61 // numeric, we know it was assigned by PHP and the developer manually
62 // entered the field information, so we'll simply add it to the list
63 if (is_numeric($field))
64 {
Andrey Andreev650f2a22012-05-26 18:56:29 +030065 $sql .= "\n\t".$attributes;
Alex Bilbie84445d02011-03-10 16:43:39 +000066 }
67 else
68 {
69 $attributes = array_change_key_case($attributes, CASE_UPPER);
70
Andrey Andreev650f2a22012-05-26 18:56:29 +030071 $sql .= "\n\t".$this->db->escape_identifiers($field).' '.$attributes['TYPE'];
Alex Bilbie84445d02011-03-10 16:43:39 +000072
73 if (array_key_exists('CONSTRAINT', $attributes))
74 {
75 $sql .= '('.$attributes['CONSTRAINT'].')';
76 }
77
78 if (array_key_exists('UNSIGNED', $attributes) && $attributes['UNSIGNED'] === TRUE)
79 {
80 $sql .= ' UNSIGNED';
81 }
82
83 if (array_key_exists('DEFAULT', $attributes))
84 {
85 $sql .= ' DEFAULT \''.$attributes['DEFAULT'].'\'';
86 }
87
88 if (array_key_exists('NULL', $attributes) && $attributes['NULL'] === TRUE)
89 {
90 $sql .= ' NULL';
91 }
92 else
93 {
94 $sql .= ' NOT NULL';
95 }
96
97 if (array_key_exists('AUTO_INCREMENT', $attributes) && $attributes['AUTO_INCREMENT'] === TRUE)
98 {
99 $sql .= ' AUTO_INCREMENT';
100 }
101 }
102
103 // don't add a comma on the end of the last field
104 if (++$current_field_count < count($fields))
105 {
106 $sql .= ',';
107 }
108 }
109
110 if (count($primary_keys) > 0)
111 {
Andrey Andreev032e7ea2012-03-06 19:48:35 +0200112 $primary_keys = $this->db->protect_identifiers($primary_keys);
Andrey Andreev650f2a22012-05-26 18:56:29 +0300113 $sql .= ",\n\tPRIMARY KEY (".implode(', ', $primary_keys).')';
Alex Bilbie84445d02011-03-10 16:43:39 +0000114 }
115
116 if (is_array($keys) && count($keys) > 0)
117 {
118 foreach ($keys as $key)
119 {
120 if (is_array($key))
121 {
Andrey Andreev032e7ea2012-03-06 19:48:35 +0200122 $key = $this->db->protect_identifiers($key);
Alex Bilbie84445d02011-03-10 16:43:39 +0000123 }
124 else
125 {
Andrey Andreev032e7ea2012-03-06 19:48:35 +0200126 $key = array($this->db->protect_identifiers($key));
Alex Bilbie84445d02011-03-10 16:43:39 +0000127 }
128
Andrey Andreev650f2a22012-05-26 18:56:29 +0300129 $sql .= ",\n\tFOREIGN KEY (".implode(', ', $key).')';
Alex Bilbie84445d02011-03-10 16:43:39 +0000130 }
131 }
132
Andrey Andreev650f2a22012-05-26 18:56:29 +0300133 return $sql."\n)";
Alex Bilbie84445d02011-03-10 16:43:39 +0000134 }
135
136 // --------------------------------------------------------------------
137
138 /**
139 * Alter table query
140 *
141 * Generates a platform-specific query so that a table can be altered
142 * Called by add_column(), drop_column(), and column_alter(),
143 *
Alex Bilbie84445d02011-03-10 16:43:39 +0000144 * @param string the ALTER type (ADD, DROP, CHANGE)
145 * @param string the column name
146 * @param string the table name
147 * @param string the column definition
148 * @param string the default value
Andrey Andreev4d116712012-03-20 16:30:57 +0200149 * @param bool should 'NOT NULL' be added
Alex Bilbie84445d02011-03-10 16:43:39 +0000150 * @param string the field after which we should add the new field
Andrey Andreev4d116712012-03-20 16:30:57 +0200151 * @return string
Alex Bilbie84445d02011-03-10 16:43:39 +0000152 */
Andrey Andreeva0d4e412012-04-09 15:06:40 +0300153 protected function _alter_table($alter_type, $table, $column_name, $column_definition = '', $default_value = '', $null = '', $after_field = '')
Alex Bilbie84445d02011-03-10 16:43:39 +0000154 {
Andrey Andreev032e7ea2012-03-06 19:48:35 +0200155 $sql = 'ALTER TABLE '.$this->db->protect_identifiers($table).' '.$alter_type.' '.$this->db->protect_identifiers($column_name);
Alex Bilbie84445d02011-03-10 16:43:39 +0000156
157 // DROP has everything it needs now.
158 if ($alter_type == 'DROP')
159 {
160 return $sql;
161 }
162
Andrey Andreev650f2a22012-05-26 18:56:29 +0300163 $sql .= ' '.$column_definition;
Alex Bilbie84445d02011-03-10 16:43:39 +0000164
165 if ($default_value != '')
166 {
Andrey Andreev650f2a22012-05-26 18:56:29 +0300167 $sql .= " DEFAULT '".$default_value."'";
Alex Bilbie84445d02011-03-10 16:43:39 +0000168 }
169
Andrey Andreev650f2a22012-05-26 18:56:29 +0300170 $sql .= ($null === NULL) ? ' NULL' : ' NOT NULL';
Alex Bilbie84445d02011-03-10 16:43:39 +0000171
172 if ($after_field != '')
173 {
Andrey Andreev032e7ea2012-03-06 19:48:35 +0200174 return $sql.' AFTER '.$this->db->protect_identifiers($after_field);
Alex Bilbie84445d02011-03-10 16:43:39 +0000175 }
176
177 return $sql;
Alex Bilbie84445d02011-03-10 16:43:39 +0000178 }
179
Alex Bilbie84445d02011-03-10 16:43:39 +0000180}
181
Andrey Andreev032e7ea2012-03-06 19:48:35 +0200182/* End of file sqlsrv_forge.php */
Timothy Warren215890b2012-03-20 09:38:16 -0400183/* Location: ./system/database/drivers/sqlsrv/sqlsrv_forge.php */