Andrey Andreev | 0e8968a | 2012-01-26 02:04:37 +0200 | [diff] [blame] | 1 | <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); |
Alex Bilbie | 84445d0 | 2011-03-10 16:43:39 +0000 | [diff] [blame] | 2 | /** |
| 3 | * CodeIgniter |
| 4 | * |
Phil Sturgeon | 07c1ac8 | 2012-03-09 17:03:37 +0000 | [diff] [blame] | 5 | * An open source application development framework for PHP 5.2.4 or newer |
Alex Bilbie | 84445d0 | 2011-03-10 16:43:39 +0000 | [diff] [blame] | 6 | * |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 7 | * NOTICE OF LICENSE |
Andrey Andreev | 0e8968a | 2012-01-26 02:04:37 +0200 | [diff] [blame] | 8 | * |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 9 | * Licensed under the Open Software License version 3.0 |
Andrey Andreev | 0e8968a | 2012-01-26 02:04:37 +0200 | [diff] [blame] | 10 | * |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 11 | * 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 Bilbie | 84445d0 | 2011-03-10 16:43:39 +0000 | [diff] [blame] | 19 | * @package CodeIgniter |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 20 | * @author EllisLab Dev Team |
Greg Aker | 0defe5d | 2012-01-01 18:46:41 -0600 | [diff] [blame] | 21 | * @copyright Copyright (c) 2008 - 2012, EllisLab, Inc. (http://ellislab.com/) |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 22 | * @license http://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) |
Alex Bilbie | 84445d0 | 2011-03-10 16:43:39 +0000 | [diff] [blame] | 23 | * @link http://codeigniter.com |
Andrey Andreev | bf94058 | 2012-06-10 07:05:05 +0300 | [diff] [blame] | 24 | * @since Version 2.0.3 |
Alex Bilbie | 84445d0 | 2011-03-10 16:43:39 +0000 | [diff] [blame] | 25 | * @filesource |
| 26 | */ |
| 27 | |
Alex Bilbie | 84445d0 | 2011-03-10 16:43:39 +0000 | [diff] [blame] | 28 | /** |
Alex Bilbie | 01ab004 | 2011-03-18 19:24:30 +0000 | [diff] [blame] | 29 | * SQLSRV Forge Class |
Alex Bilbie | 84445d0 | 2011-03-10 16:43:39 +0000 | [diff] [blame] | 30 | * |
| 31 | * @category Database |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 32 | * @author EllisLab Dev Team |
Alex Bilbie | 84445d0 | 2011-03-10 16:43:39 +0000 | [diff] [blame] | 33 | * @link http://codeigniter.com/user_guide/database/ |
| 34 | */ |
Alex Bilbie | 01ab004 | 2011-03-18 19:24:30 +0000 | [diff] [blame] | 35 | class CI_DB_sqlsrv_forge extends CI_DB_forge { |
Alex Bilbie | 84445d0 | 2011-03-10 16:43:39 +0000 | [diff] [blame] | 36 | |
Andrey Andreev | d947eba | 2012-04-09 14:58:28 +0300 | [diff] [blame] | 37 | protected $_drop_table = 'DROP TABLE %s'; |
Alex Bilbie | 84445d0 | 2011-03-10 16:43:39 +0000 | [diff] [blame] | 38 | |
| 39 | /** |
| 40 | * Create Table |
| 41 | * |
Alex Bilbie | 84445d0 | 2011-03-10 16:43:39 +0000 | [diff] [blame] | 42 | * @param string the table name |
| 43 | * @param array the fields |
| 44 | * @param mixed primary key(s) |
| 45 | * @param mixed key(s) |
Andrey Andreev | 0e8968a | 2012-01-26 02:04:37 +0200 | [diff] [blame] | 46 | * @param bool should 'IF NOT EXISTS' be added to the SQL |
| 47 | * @return string |
Alex Bilbie | 84445d0 | 2011-03-10 16:43:39 +0000 | [diff] [blame] | 48 | */ |
Andrey Andreev | a0d4e41 | 2012-04-09 15:06:40 +0300 | [diff] [blame] | 49 | protected function _create_table($table, $fields, $primary_keys, $keys, $if_not_exists) |
Alex Bilbie | 84445d0 | 2011-03-10 16:43:39 +0000 | [diff] [blame] | 50 | { |
Andrey Andreev | 650f2a2 | 2012-05-26 18:56:29 +0300 | [diff] [blame] | 51 | $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 Bilbie | 84445d0 | 2011-03-10 16:43:39 +0000 | [diff] [blame] | 54 | |
Andrey Andreev | 650f2a2 | 2012-05-26 18:56:29 +0300 | [diff] [blame] | 55 | $sql .= 'CREATE TABLE '.$this->db->escape_identifiers($table).' ('; |
Alex Bilbie | 84445d0 | 2011-03-10 16:43:39 +0000 | [diff] [blame] | 56 | |
Alex Bilbie | 84445d0 | 2011-03-10 16:43:39 +0000 | [diff] [blame] | 57 | $current_field_count = 0; |
Andrey Andreev | 0e8968a | 2012-01-26 02:04:37 +0200 | [diff] [blame] | 58 | foreach ($fields as $field => $attributes) |
Alex Bilbie | 84445d0 | 2011-03-10 16:43:39 +0000 | [diff] [blame] | 59 | { |
| 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 Andreev | 0e8968a | 2012-01-26 02:04:37 +0200 | [diff] [blame] | 65 | $sql .= "\n\t".$attributes; |
Alex Bilbie | 84445d0 | 2011-03-10 16:43:39 +0000 | [diff] [blame] | 66 | } |
| 67 | else |
| 68 | { |
| 69 | $attributes = array_change_key_case($attributes, CASE_UPPER); |
| 70 | |
Andrey Andreev | 650f2a2 | 2012-05-26 18:56:29 +0300 | [diff] [blame] | 71 | $sql .= "\n\t".$this->db->escape_identifiers($field).' '.$attributes['TYPE']; |
Alex Bilbie | 84445d0 | 2011-03-10 16:43:39 +0000 | [diff] [blame] | 72 | |
Andrey Andreev | af4d55d | 2012-06-07 16:22:35 +0300 | [diff] [blame] | 73 | if (stripos($attributes['TYPE'], 'INT') === FALSE && ! empty($attributes['CONSTRAINT'])) |
Alex Bilbie | 84445d0 | 2011-03-10 16:43:39 +0000 | [diff] [blame] | 74 | { |
| 75 | $sql .= '('.$attributes['CONSTRAINT'].')'; |
| 76 | } |
| 77 | |
Andrey Andreev | 27af930 | 2012-06-07 22:25:16 +0300 | [diff] [blame] | 78 | if ( ! empty($attributes['UNSIGNED']) && $attributes['UNSIGNED'] === TRUE) |
Alex Bilbie | 84445d0 | 2011-03-10 16:43:39 +0000 | [diff] [blame] | 79 | { |
| 80 | $sql .= ' UNSIGNED'; |
| 81 | } |
| 82 | |
Andrey Andreev | 27af930 | 2012-06-07 22:25:16 +0300 | [diff] [blame] | 83 | if (isset($attributes['DEFAULT'])) |
Alex Bilbie | 84445d0 | 2011-03-10 16:43:39 +0000 | [diff] [blame] | 84 | { |
Andrey Andreev | 27af930 | 2012-06-07 22:25:16 +0300 | [diff] [blame] | 85 | $sql .= " DEFAULT '".$attributes['DEFAULT']."'"; |
Alex Bilbie | 84445d0 | 2011-03-10 16:43:39 +0000 | [diff] [blame] | 86 | } |
| 87 | |
Andrey Andreev | 27af930 | 2012-06-07 22:25:16 +0300 | [diff] [blame] | 88 | $sql .= ( ! empty($attributes['NULL']) && $attribues['NULL'] === TRUE) |
| 89 | ? ' NULL' : ' NOT NULL'; |
Alex Bilbie | 84445d0 | 2011-03-10 16:43:39 +0000 | [diff] [blame] | 90 | |
Andrey Andreev | 27af930 | 2012-06-07 22:25:16 +0300 | [diff] [blame] | 91 | if ( ! empty($attributes['AUTO_INCREMENT']) && $attributes['AUTO_INCREMENT'] === TRUE) |
Alex Bilbie | 84445d0 | 2011-03-10 16:43:39 +0000 | [diff] [blame] | 92 | { |
| 93 | $sql .= ' AUTO_INCREMENT'; |
| 94 | } |
| 95 | } |
| 96 | |
| 97 | // 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 Andreev | 9637b40 | 2012-06-08 15:39:24 +0300 | [diff] [blame] | 106 | $sql .= ",\n\tPRIMARY KEY (".implode(', ', $this->db->escape_identifiers($primary_keys)).')'; |
Alex Bilbie | 84445d0 | 2011-03-10 16:43:39 +0000 | [diff] [blame] | 107 | } |
| 108 | |
| 109 | if (is_array($keys) && count($keys) > 0) |
| 110 | { |
| 111 | foreach ($keys as $key) |
| 112 | { |
Andrey Andreev | 27af930 | 2012-06-07 22:25:16 +0300 | [diff] [blame] | 113 | $key = is_array($key) |
Andrey Andreev | 9637b40 | 2012-06-08 15:39:24 +0300 | [diff] [blame] | 114 | ? $this->db->escape_identifiers($key) |
Andrey Andreev | 27af930 | 2012-06-07 22:25:16 +0300 | [diff] [blame] | 115 | : array($this->escape_identifiers($key)); |
Alex Bilbie | 84445d0 | 2011-03-10 16:43:39 +0000 | [diff] [blame] | 116 | |
Andrey Andreev | 0e8968a | 2012-01-26 02:04:37 +0200 | [diff] [blame] | 117 | $sql .= ",\n\tFOREIGN KEY (".implode(', ', $key).')'; |
Alex Bilbie | 84445d0 | 2011-03-10 16:43:39 +0000 | [diff] [blame] | 118 | } |
| 119 | } |
| 120 | |
Andrey Andreev | 0e8968a | 2012-01-26 02:04:37 +0200 | [diff] [blame] | 121 | return $sql."\n)"; |
Alex Bilbie | 84445d0 | 2011-03-10 16:43:39 +0000 | [diff] [blame] | 122 | } |
| 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 | * |
Alex Bilbie | 84445d0 | 2011-03-10 16:43:39 +0000 | [diff] [blame] | 132 | * @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 Andreev | 4d11671 | 2012-03-20 16:30:57 +0200 | [diff] [blame] | 137 | * @param bool should 'NOT NULL' be added |
Alex Bilbie | 84445d0 | 2011-03-10 16:43:39 +0000 | [diff] [blame] | 138 | * @param string the field after which we should add the new field |
Andrey Andreev | 4d11671 | 2012-03-20 16:30:57 +0200 | [diff] [blame] | 139 | * @return string |
Alex Bilbie | 84445d0 | 2011-03-10 16:43:39 +0000 | [diff] [blame] | 140 | */ |
Andrey Andreev | a0d4e41 | 2012-04-09 15:06:40 +0300 | [diff] [blame] | 141 | protected function _alter_table($alter_type, $table, $column_name, $column_definition = '', $default_value = '', $null = '', $after_field = '') |
Alex Bilbie | 84445d0 | 2011-03-10 16:43:39 +0000 | [diff] [blame] | 142 | { |
Andrey Andreev | 27af930 | 2012-06-07 22:25:16 +0300 | [diff] [blame] | 143 | $sql = 'ALTER TABLE '.$this->db->escape_identifiers($table).' '.$alter_type.' '.$this->db->escape_identifiers($column_name); |
Alex Bilbie | 84445d0 | 2011-03-10 16:43:39 +0000 | [diff] [blame] | 144 | |
| 145 | // DROP has everything it needs now. |
Alex Bilbie | 48a2baf | 2012-06-02 11:09:54 +0100 | [diff] [blame] | 146 | if ($alter_type === 'DROP') |
Alex Bilbie | 84445d0 | 2011-03-10 16:43:39 +0000 | [diff] [blame] | 147 | { |
| 148 | return $sql; |
| 149 | } |
| 150 | |
Andrey Andreev | 0e8968a | 2012-01-26 02:04:37 +0200 | [diff] [blame] | 151 | return $sql.' '.$column_definition |
| 152 | .($default_value != '' ? ' DEFAULT "'.$default_value.'"' : '') |
| 153 | .($null === NULL ? ' NULL' : ' NOT NULL') |
Andrey Andreev | 27af930 | 2012-06-07 22:25:16 +0300 | [diff] [blame] | 154 | .($after_field != '' ? ' AFTER '.$this->db->escape_identifiers($after_field) : ''); |
Alex Bilbie | 84445d0 | 2011-03-10 16:43:39 +0000 | [diff] [blame] | 155 | } |
| 156 | |
Alex Bilbie | 84445d0 | 2011-03-10 16:43:39 +0000 | [diff] [blame] | 157 | } |
| 158 | |
Andrey Andreev | 0e8968a | 2012-01-26 02:04:37 +0200 | [diff] [blame] | 159 | /* End of file sqlsrv_forge.php */ |
Timothy Warren | 215890b | 2012-03-20 09:38:16 -0400 | [diff] [blame] | 160 | /* Location: ./system/database/drivers/sqlsrv/sqlsrv_forge.php */ |