blob: 1e5ef4bfd9ff7178b50cca81c4aedcaf242293aa [file] [log] [blame]
Andrey Andreevc5536aa2012-11-01 17:33:58 +02001<?php
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 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
Andrey Andreevbf940582012-06-10 07:05:05 +030024 * @since Version 2.0.3
Alex Bilbie84445d02011-03-10 16:43:39 +000025 * @filesource
26 */
Andrey Andreevc5536aa2012-11-01 17:33:58 +020027defined('BASEPATH') OR exit('No direct script access allowed');
Alex Bilbie84445d02011-03-10 16:43:39 +000028
Alex Bilbie84445d02011-03-10 16:43:39 +000029/**
Alex Bilbie01ab0042011-03-18 19:24:30 +000030 * SQLSRV Forge Class
Alex Bilbie84445d02011-03-10 16:43:39 +000031 *
32 * @category Database
Derek Jonesf4a4bd82011-10-20 12:18:42 -050033 * @author EllisLab Dev Team
Alex Bilbie84445d02011-03-10 16:43:39 +000034 * @link http://codeigniter.com/user_guide/database/
35 */
Alex Bilbie01ab0042011-03-18 19:24:30 +000036class CI_DB_sqlsrv_forge extends CI_DB_forge {
Alex Bilbie84445d02011-03-10 16:43:39 +000037
Andrey Andreevd947eba2012-04-09 14:58:28 +030038 protected $_drop_table = 'DROP TABLE %s';
Alex Bilbie84445d02011-03-10 16:43:39 +000039
40 /**
41 * Create Table
42 *
Alex Bilbie84445d02011-03-10 16:43:39 +000043 * @param string the table name
44 * @param array the fields
45 * @param mixed primary key(s)
46 * @param mixed key(s)
Andrey Andreev0e8968a2012-01-26 02:04:37 +020047 * @param bool should 'IF NOT EXISTS' be added to the SQL
48 * @return string
Alex Bilbie84445d02011-03-10 16:43:39 +000049 */
Andrey Andreeva0d4e412012-04-09 15:06:40 +030050 protected function _create_table($table, $fields, $primary_keys, $keys, $if_not_exists)
Alex Bilbie84445d02011-03-10 16:43:39 +000051 {
Andrey Andreev650f2a22012-05-26 18:56:29 +030052 $sql = ($if_not_exists === TRUE)
53 ? "IF NOT EXISTS (SELECT * FROM sysobjects WHERE ID = object_id(N'".$table."') AND OBJECTPROPERTY(id, N'IsUserTable') = 1)\n"
54 : '';
Alex Bilbie84445d02011-03-10 16:43:39 +000055
Andrey Andreev650f2a22012-05-26 18:56:29 +030056 $sql .= 'CREATE TABLE '.$this->db->escape_identifiers($table).' (';
Alex Bilbie84445d02011-03-10 16:43:39 +000057
Alex Bilbie84445d02011-03-10 16:43:39 +000058 $current_field_count = 0;
Andrey Andreev0e8968a2012-01-26 02:04:37 +020059 foreach ($fields as $field => $attributes)
Alex Bilbie84445d02011-03-10 16:43:39 +000060 {
61 // Numeric field names aren't allowed in databases, so if the key is
62 // numeric, we know it was assigned by PHP and the developer manually
63 // entered the field information, so we'll simply add it to the list
64 if (is_numeric($field))
65 {
Andrey Andreev0e8968a2012-01-26 02:04:37 +020066 $sql .= "\n\t".$attributes;
Alex Bilbie84445d02011-03-10 16:43:39 +000067 }
68 else
69 {
70 $attributes = array_change_key_case($attributes, CASE_UPPER);
71
Andrey Andreev650f2a22012-05-26 18:56:29 +030072 $sql .= "\n\t".$this->db->escape_identifiers($field).' '.$attributes['TYPE'];
Alex Bilbie84445d02011-03-10 16:43:39 +000073
Andrey Andreevaf4d55d2012-06-07 16:22:35 +030074 if (stripos($attributes['TYPE'], 'INT') === FALSE && ! empty($attributes['CONSTRAINT']))
Alex Bilbie84445d02011-03-10 16:43:39 +000075 {
76 $sql .= '('.$attributes['CONSTRAINT'].')';
77 }
78
Andrey Andreev27af9302012-06-07 22:25:16 +030079 if ( ! empty($attributes['UNSIGNED']) && $attributes['UNSIGNED'] === TRUE)
Alex Bilbie84445d02011-03-10 16:43:39 +000080 {
81 $sql .= ' UNSIGNED';
82 }
83
Andrey Andreev27af9302012-06-07 22:25:16 +030084 if (isset($attributes['DEFAULT']))
Alex Bilbie84445d02011-03-10 16:43:39 +000085 {
Andrey Andreev27af9302012-06-07 22:25:16 +030086 $sql .= " DEFAULT '".$attributes['DEFAULT']."'";
Alex Bilbie84445d02011-03-10 16:43:39 +000087 }
88
Andrey Andreev27af9302012-06-07 22:25:16 +030089 $sql .= ( ! empty($attributes['NULL']) && $attribues['NULL'] === TRUE)
90 ? ' NULL' : ' NOT NULL';
Alex Bilbie84445d02011-03-10 16:43:39 +000091
Andrey Andreev27af9302012-06-07 22:25:16 +030092 if ( ! empty($attributes['AUTO_INCREMENT']) && $attributes['AUTO_INCREMENT'] === TRUE)
Alex Bilbie84445d02011-03-10 16:43:39 +000093 {
94 $sql .= ' AUTO_INCREMENT';
95 }
96 }
97
98 // don't add a comma on the end of the last field
99 if (++$current_field_count < count($fields))
100 {
101 $sql .= ',';
102 }
103 }
104
105 if (count($primary_keys) > 0)
106 {
Andrey Andreev9637b402012-06-08 15:39:24 +0300107 $sql .= ",\n\tPRIMARY KEY (".implode(', ', $this->db->escape_identifiers($primary_keys)).')';
Alex Bilbie84445d02011-03-10 16:43:39 +0000108 }
109
110 if (is_array($keys) && count($keys) > 0)
111 {
112 foreach ($keys as $key)
113 {
Andrey Andreev27af9302012-06-07 22:25:16 +0300114 $key = is_array($key)
Andrey Andreev9637b402012-06-08 15:39:24 +0300115 ? $this->db->escape_identifiers($key)
Andrey Andreev27af9302012-06-07 22:25:16 +0300116 : array($this->escape_identifiers($key));
Alex Bilbie84445d02011-03-10 16:43:39 +0000117
Andrey Andreev0e8968a2012-01-26 02:04:37 +0200118 $sql .= ",\n\tFOREIGN KEY (".implode(', ', $key).')';
Alex Bilbie84445d02011-03-10 16:43:39 +0000119 }
120 }
121
Andrey Andreev0e8968a2012-01-26 02:04:37 +0200122 return $sql."\n)";
Alex Bilbie84445d02011-03-10 16:43:39 +0000123 }
124
125 // --------------------------------------------------------------------
126
127 /**
128 * Alter table query
129 *
130 * Generates a platform-specific query so that a table can be altered
131 * Called by add_column(), drop_column(), and column_alter(),
132 *
Alex Bilbie84445d02011-03-10 16:43:39 +0000133 * @param string the ALTER type (ADD, DROP, CHANGE)
134 * @param string the column name
135 * @param string the table name
136 * @param string the column definition
137 * @param string the default value
Andrey Andreev4d116712012-03-20 16:30:57 +0200138 * @param bool should 'NOT NULL' be added
Alex Bilbie84445d02011-03-10 16:43:39 +0000139 * @param string the field after which we should add the new field
Andrey Andreev4d116712012-03-20 16:30:57 +0200140 * @return string
Alex Bilbie84445d02011-03-10 16:43:39 +0000141 */
Andrey Andreeva0d4e412012-04-09 15:06:40 +0300142 protected function _alter_table($alter_type, $table, $column_name, $column_definition = '', $default_value = '', $null = '', $after_field = '')
Alex Bilbie84445d02011-03-10 16:43:39 +0000143 {
Andrey Andreev27af9302012-06-07 22:25:16 +0300144 $sql = 'ALTER TABLE '.$this->db->escape_identifiers($table).' '.$alter_type.' '.$this->db->escape_identifiers($column_name);
Alex Bilbie84445d02011-03-10 16:43:39 +0000145
146 // DROP has everything it needs now.
Alex Bilbie48a2baf2012-06-02 11:09:54 +0100147 if ($alter_type === 'DROP')
Alex Bilbie84445d02011-03-10 16:43:39 +0000148 {
149 return $sql;
150 }
151
Andrey Andreev0e8968a2012-01-26 02:04:37 +0200152 return $sql.' '.$column_definition
153 .($default_value != '' ? ' DEFAULT "'.$default_value.'"' : '')
154 .($null === NULL ? ' NULL' : ' NOT NULL')
Andrey Andreev27af9302012-06-07 22:25:16 +0300155 .($after_field != '' ? ' AFTER '.$this->db->escape_identifiers($after_field) : '');
Alex Bilbie84445d02011-03-10 16:43:39 +0000156 }
157
Alex Bilbie84445d02011-03-10 16:43:39 +0000158}
159
Andrey Andreev0e8968a2012-01-26 02:04:37 +0200160/* End of file sqlsrv_forge.php */
Timothy Warren215890b2012-03-20 09:38:16 -0400161/* Location: ./system/database/drivers/sqlsrv/sqlsrv_forge.php */