blob: 3a3528f7bfe9e62145ffae5823de0afd96003d24 [file] [log] [blame]
Andrey Andreev4da24f82012-01-25 21:54:23 +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 Andreev4da24f82012-01-25 21:54:23 +02008 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05009 * Licensed under the Open Software License version 3.0
Andrey Andreev4da24f82012-01-25 21:54:23 +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 Andreev7a189e82012-01-27 21:13:52 +020046 * @param bool should 'IF NOT EXISTS' be added to the SQL
Andrey Andreev4da24f82012-01-25 21:54:23 +020047 * @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 {
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 : '';
Barry Mienydd671972010-10-04 16:33:58 +020054
Andrey Andreev650f2a22012-05-26 18:56:29 +030055 $sql .= 'CREATE TABLE '.$this->db->escape_identifiers($table).' (';
Barry Mienydd671972010-10-04 16:33:58 +020056
Derek Allard2067d1a2008-11-13 22:59:24 +000057 $current_field_count = 0;
Andrey Andreevc0664812012-03-20 16:07:59 +020058 foreach ($fields as $field => $attributes)
Derek Allard2067d1a2008-11-13 22:59:24 +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 Andreev4da24f82012-01-25 21:54:23 +020065 $sql .= "\n\t".$attributes;
Derek Allard2067d1a2008-11-13 22:59:24 +000066 }
67 else
68 {
69 $attributes = array_change_key_case($attributes, CASE_UPPER);
Barry Mienydd671972010-10-04 16:33:58 +020070
Andrey Andreev650f2a22012-05-26 18:56:29 +030071 $sql .= "\n\t".$this->db->escape_identifiers($field).' '.$attributes['TYPE'];
Barry Mienydd671972010-10-04 16:33:58 +020072
Andrey Andreevaf4d55d2012-06-07 16:22:35 +030073 if (stripos($attributes['TYPE'], 'INT') === FALSE && ! empty($attributes['CONSTRAINT']))
Derek Allard2067d1a2008-11-13 22:59:24 +000074 {
75 $sql .= '('.$attributes['CONSTRAINT'].')';
76 }
Barry Mienydd671972010-10-04 16:33:58 +020077
Andrey Andreevcd221ab2012-06-07 21:56:59 +030078 if ( ! empty($attributes['UNSIGNED']) && $attributes['UNSIGNED'] === TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +000079 {
80 $sql .= ' UNSIGNED';
81 }
Barry Mienydd671972010-10-04 16:33:58 +020082
Andrey Andreevcd221ab2012-06-07 21:56:59 +030083 if (isset($attributes['DEFAULT']))
Derek Allard2067d1a2008-11-13 22:59:24 +000084 {
Andrey Andreevcd221ab2012-06-07 21:56:59 +030085 $sql .= " DEFAULT '".$attributes['DEFAULT']."'";
Derek Allard2067d1a2008-11-13 22:59:24 +000086 }
Barry Mienydd671972010-10-04 16:33:58 +020087
Andrey Andreevcd221ab2012-06-07 21:56:59 +030088 $sql .= ( ! empty($attributes['NULL']) && $attributes['NULL'] === TRUE)
89 ? ' NULL' : ' NOT NULL';
Barry Mienydd671972010-10-04 16:33:58 +020090
Andrey Andreevcd221ab2012-06-07 21:56:59 +030091 if ( ! empty($attributes['AUTO_INCREMENT']) && $attributes['AUTO_INCREMENT'] === TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +000092 {
93 $sql .= ' AUTO_INCREMENT';
94 }
95 }
Barry Mienydd671972010-10-04 16:33:58 +020096
Derek Allard2067d1a2008-11-13 22:59:24 +000097 // don't add a comma on the end of the last field
98 if (++$current_field_count < count($fields))
99 {
100 $sql .= ',';
101 }
102 }
103
104 if (count($primary_keys) > 0)
105 {
Andrey Andreev9637b402012-06-08 15:39:24 +0300106 $sql .= ",\n\tPRIMARY KEY (".implode(', ', $this->db->escape_identifiers($primary_keys)).')';
Derek Allard2067d1a2008-11-13 22:59:24 +0000107 }
Barry Mienydd671972010-10-04 16:33:58 +0200108
Derek Allard2067d1a2008-11-13 22:59:24 +0000109 if (is_array($keys) && count($keys) > 0)
110 {
111 foreach ($keys as $key)
112 {
Andrey Andreevcd221ab2012-06-07 21:56:59 +0300113 $key = is_array($key)
Andrey Andreev9637b402012-06-08 15:39:24 +0300114 ? $this->db->escape_identifiers($key)
Andrey Andreevcd221ab2012-06-07 21:56:59 +0300115 : array($this->db->escape_identifiers($key));
Barry Mienydd671972010-10-04 16:33:58 +0200116
Andrey Andreev4da24f82012-01-25 21:54:23 +0200117 $sql .= ",\n\tFOREIGN KEY (".implode(', ', $key).')';
Derek Allard2067d1a2008-11-13 22:59:24 +0000118 }
119 }
Barry Mienydd671972010-10-04 16:33:58 +0200120
Andrey Andreev4da24f82012-01-25 21:54:23 +0200121 return $sql."\n)";
Derek Allard2067d1a2008-11-13 22:59:24 +0000122 }
123
124 // --------------------------------------------------------------------
125
126 /**
127 * Alter table query
128 *
129 * Generates a platform-specific query so that a table can be altered
130 * Called by add_column(), drop_column(), and column_alter(),
131 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000132 * @param string the ALTER type (ADD, DROP, CHANGE)
133 * @param string the column name
134 * @param string the table name
135 * @param string the column definition
136 * @param string the default value
Andrey Andreev7a189e82012-01-27 21:13:52 +0200137 * @param bool should 'NOT NULL' be added
Derek Allard2067d1a2008-11-13 22:59:24 +0000138 * @param string the field after which we should add the new field
Andrey Andreev7a189e82012-01-27 21:13:52 +0200139 * @return string
Derek Allard2067d1a2008-11-13 22:59:24 +0000140 */
Andrey Andreeva0d4e412012-04-09 15:06:40 +0300141 protected function _alter_table($alter_type, $table, $column_name, $column_definition = '', $default_value = '', $null = '', $after_field = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000142 {
Andrey Andreevcd221ab2012-06-07 21:56:59 +0300143 $sql = 'ALTER TABLE '.$this->db->escape_identifiers($table).' '.$alter_type.' '.$this->db->escape_identifiers($column_name);
Derek Allard2067d1a2008-11-13 22:59:24 +0000144
145 // DROP has everything it needs now.
Andrey Andreev4da24f82012-01-25 21:54:23 +0200146 if ($alter_type === 'DROP')
Derek Allard2067d1a2008-11-13 22:59:24 +0000147 {
148 return $sql;
149 }
150
Andrey Andreev4da24f82012-01-25 21:54:23 +0200151 return $sql.' '.$column_definition
152 .($default_value != '' ? ' DEFAULT "'.$default_value.'"' : '')
153 .($null === NULL ? ' NULL' : ' NOT NULL')
Andrey Andreev5ef194d2012-06-08 01:12:54 +0300154 .($after_field != '' ? ' AFTER '.$this->db->escape_identifiers($after_field) : '');
Derek Allard2067d1a2008-11-13 22:59:24 +0000155 }
156
Derek Allard2067d1a2008-11-13 22:59:24 +0000157}
158
159/* End of file mssql_forge.php */
Timothy Warren215890b2012-03-20 09:38:16 -0400160/* Location: ./system/database/drivers/mssql/mssql_forge.php */