Andrey Andreev | c5536aa | 2012-11-01 17:33:58 +0200 | [diff] [blame^] | 1 | <?php |
Timothy Warren | 80ab816 | 2011-08-22 18:26:12 -0400 | [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 |
Timothy Warren | 80ab816 | 2011-08-22 18:26:12 -0400 | [diff] [blame] | 6 | * |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 7 | * NOTICE OF LICENSE |
Andrey Andreev | 9fd79f5 | 2012-03-20 23:04:13 +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 | 9fd79f5 | 2012-03-20 23:04:13 +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 | * |
Timothy Warren | 80ab816 | 2011-08-22 18:26:12 -0400 | [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) |
Timothy Warren | 80ab816 | 2011-08-22 18:26:12 -0400 | [diff] [blame] | 23 | * @link http://codeigniter.com |
Timothy Warren | 018af7a | 2011-09-07 12:07:35 -0400 | [diff] [blame] | 24 | * @since Version 2.1.0 |
Timothy Warren | 80ab816 | 2011-08-22 18:26:12 -0400 | [diff] [blame] | 25 | * @filesource |
| 26 | */ |
Andrey Andreev | c5536aa | 2012-11-01 17:33:58 +0200 | [diff] [blame^] | 27 | defined('BASEPATH') OR exit('No direct script access allowed'); |
Timothy Warren | 80ab816 | 2011-08-22 18:26:12 -0400 | [diff] [blame] | 28 | |
Timothy Warren | 80ab816 | 2011-08-22 18:26:12 -0400 | [diff] [blame] | 29 | /** |
| 30 | * PDO Forge Class |
| 31 | * |
| 32 | * @category Database |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 33 | * @author EllisLab Dev Team |
Timothy Warren | 80ab816 | 2011-08-22 18:26:12 -0400 | [diff] [blame] | 34 | * @link http://codeigniter.com/database/ |
| 35 | */ |
| 36 | class CI_DB_pdo_forge extends CI_DB_forge { |
| 37 | |
Andrey Andreev | d947eba | 2012-04-09 14:58:28 +0300 | [diff] [blame] | 38 | protected $_drop_table = 'DROP TABLE %s'; |
Timothy Warren | 80ab816 | 2011-08-22 18:26:12 -0400 | [diff] [blame] | 39 | |
| 40 | /** |
| 41 | * Create Table |
| 42 | * |
Timothy Warren | 80ab816 | 2011-08-22 18:26:12 -0400 | [diff] [blame] | 43 | * @param string the table name |
| 44 | * @param array the fields |
| 45 | * @param mixed primary key(s) |
| 46 | * @param mixed key(s) |
Andrey Andreev | 9fd79f5 | 2012-03-20 23:04:13 +0200 | [diff] [blame] | 47 | * @param bool should 'IF NOT EXISTS' be added to the SQL |
Timothy Warren | 80ab816 | 2011-08-22 18:26:12 -0400 | [diff] [blame] | 48 | * @return bool |
| 49 | */ |
Andrey Andreev | a0d4e41 | 2012-04-09 15:06:40 +0300 | [diff] [blame] | 50 | protected function _create_table($table, $fields, $primary_keys, $keys, $if_not_exists) |
Timothy Warren | 80ab816 | 2011-08-22 18:26:12 -0400 | [diff] [blame] | 51 | { |
| 52 | $sql = 'CREATE TABLE '; |
| 53 | |
| 54 | if ($if_not_exists === TRUE) |
| 55 | { |
| 56 | $sql .= 'IF NOT EXISTS '; |
| 57 | } |
| 58 | |
Andrey Andreev | ea09a8a | 2012-04-06 20:50:07 +0300 | [diff] [blame] | 59 | $sql .= $this->db->escape_identifiers($table).' ('; |
Timothy Warren | 80ab816 | 2011-08-22 18:26:12 -0400 | [diff] [blame] | 60 | $current_field_count = 0; |
| 61 | |
Andrey Andreev | ea09a8a | 2012-04-06 20:50:07 +0300 | [diff] [blame] | 62 | foreach ($fields as $field => $attributes) |
Timothy Warren | 80ab816 | 2011-08-22 18:26:12 -0400 | [diff] [blame] | 63 | { |
| 64 | // Numeric field names aren't allowed in databases, so if the key is |
| 65 | // numeric, we know it was assigned by PHP and the developer manually |
| 66 | // entered the field information, so we'll simply add it to the list |
| 67 | if (is_numeric($field)) |
| 68 | { |
Andrey Andreev | 5ef194d | 2012-06-08 01:12:54 +0300 | [diff] [blame] | 69 | $sql .= "\n\t".$attributes; |
Timothy Warren | 80ab816 | 2011-08-22 18:26:12 -0400 | [diff] [blame] | 70 | } |
| 71 | else |
| 72 | { |
| 73 | $attributes = array_change_key_case($attributes, CASE_UPPER); |
Andrey Andreev | 5ef194d | 2012-06-08 01:12:54 +0300 | [diff] [blame] | 74 | $numeric = array('SERIAL', 'INTEGER'); |
Timothy Warren | 80ab816 | 2011-08-22 18:26:12 -0400 | [diff] [blame] | 75 | |
Andrey Andreev | 5ef194d | 2012-06-08 01:12:54 +0300 | [diff] [blame] | 76 | $sql .= "\n\t".$this->db->escape_identifiers($field).' '.$attributes['TYPE']; |
Timothy Warren | 80ab816 | 2011-08-22 18:26:12 -0400 | [diff] [blame] | 77 | |
Andrey Andreev | 5ef194d | 2012-06-08 01:12:54 +0300 | [diff] [blame] | 78 | if ( ! empty($attributes['CONSTRAINT'])) |
Timothy Warren | 80ab816 | 2011-08-22 18:26:12 -0400 | [diff] [blame] | 79 | { |
Taufan Aditya | 1820933 | 2012-02-09 16:07:27 +0700 | [diff] [blame] | 80 | // Exception for Postgre numeric which not too happy with constraint within those type |
Andrey Andreev | fbba54e | 2012-06-23 20:26:31 +0300 | [diff] [blame] | 81 | if ( ! ($this->db->subdriver === 'pgsql' && in_array($attributes['TYPE'], $numeric))) |
Taufan Aditya | 1820933 | 2012-02-09 16:07:27 +0700 | [diff] [blame] | 82 | { |
| 83 | $sql .= '('.$attributes['CONSTRAINT'].')'; |
| 84 | } |
Timothy Warren | 80ab816 | 2011-08-22 18:26:12 -0400 | [diff] [blame] | 85 | } |
| 86 | |
Andrey Andreev | 5ef194d | 2012-06-08 01:12:54 +0300 | [diff] [blame] | 87 | if ( ! empty($attributes['UNSIGNED']) && $attributes['UNSIGNED'] === TRUE) |
Timothy Warren | 80ab816 | 2011-08-22 18:26:12 -0400 | [diff] [blame] | 88 | { |
| 89 | $sql .= ' UNSIGNED'; |
| 90 | } |
| 91 | |
Andrey Andreev | 5ef194d | 2012-06-08 01:12:54 +0300 | [diff] [blame] | 92 | if (isset($attributes['DEFAULT'])) |
Timothy Warren | 80ab816 | 2011-08-22 18:26:12 -0400 | [diff] [blame] | 93 | { |
Andrey Andreev | 5ef194d | 2012-06-08 01:12:54 +0300 | [diff] [blame] | 94 | $sql .= " DEFAULT '".$attributes['DEFAULT']."'"; |
Timothy Warren | 80ab816 | 2011-08-22 18:26:12 -0400 | [diff] [blame] | 95 | } |
| 96 | |
Andrey Andreev | 5ef194d | 2012-06-08 01:12:54 +0300 | [diff] [blame] | 97 | $sql .= ( ! empty($attributes['NULL']) && $attributes['NULL'] === TRUE) |
| 98 | ? ' NULL' : ' NOT NULL'; |
Timothy Warren | 80ab816 | 2011-08-22 18:26:12 -0400 | [diff] [blame] | 99 | |
Andrey Andreev | 5ef194d | 2012-06-08 01:12:54 +0300 | [diff] [blame] | 100 | if ( ! empty($attributes['AUTO_INCREMENT']) && $attributes['AUTO_INCREMENT'] === TRUE) |
Timothy Warren | 80ab816 | 2011-08-22 18:26:12 -0400 | [diff] [blame] | 101 | { |
| 102 | $sql .= ' AUTO_INCREMENT'; |
| 103 | } |
| 104 | } |
| 105 | |
| 106 | // don't add a comma on the end of the last field |
| 107 | if (++$current_field_count < count($fields)) |
| 108 | { |
| 109 | $sql .= ','; |
| 110 | } |
| 111 | } |
| 112 | |
| 113 | if (count($primary_keys) > 0) |
| 114 | { |
Andrey Andreev | 9637b40 | 2012-06-08 15:39:24 +0300 | [diff] [blame] | 115 | $sql .= ",\n\tPRIMARY KEY (".implode(', ', $this->db->escape_identifiers($primary_keys)).')'; |
Timothy Warren | 80ab816 | 2011-08-22 18:26:12 -0400 | [diff] [blame] | 116 | } |
| 117 | |
| 118 | if (is_array($keys) && count($keys) > 0) |
| 119 | { |
| 120 | foreach ($keys as $key) |
| 121 | { |
Andrey Andreev | 5ef194d | 2012-06-08 01:12:54 +0300 | [diff] [blame] | 122 | $key = is_array($key) |
Andrey Andreev | 9637b40 | 2012-06-08 15:39:24 +0300 | [diff] [blame] | 123 | ? $this->db->escape_identifiers($key) |
Andrey Andreev | 5ef194d | 2012-06-08 01:12:54 +0300 | [diff] [blame] | 124 | : array($this->db->escape_identifiers($key)); |
Timothy Warren | 80ab816 | 2011-08-22 18:26:12 -0400 | [diff] [blame] | 125 | |
Andrey Andreev | 5ef194d | 2012-06-08 01:12:54 +0300 | [diff] [blame] | 126 | $sql .= ",\n\tFOREIGN KEY (".implode(', ', $key).')'; |
Timothy Warren | 80ab816 | 2011-08-22 18:26:12 -0400 | [diff] [blame] | 127 | } |
| 128 | } |
| 129 | |
Andrey Andreev | 5ef194d | 2012-06-08 01:12:54 +0300 | [diff] [blame] | 130 | return $sql."\n)"; |
Timothy Warren | 80ab816 | 2011-08-22 18:26:12 -0400 | [diff] [blame] | 131 | } |
| 132 | |
| 133 | // -------------------------------------------------------------------- |
| 134 | |
| 135 | /** |
Timothy Warren | 80ab816 | 2011-08-22 18:26:12 -0400 | [diff] [blame] | 136 | * Alter table query |
| 137 | * |
| 138 | * Generates a platform-specific query so that a table can be altered |
| 139 | * Called by add_column(), drop_column(), and column_alter(), |
| 140 | * |
Timothy Warren | 80ab816 | 2011-08-22 18:26:12 -0400 | [diff] [blame] | 141 | * @param string the ALTER type (ADD, DROP, CHANGE) |
| 142 | * @param string the column name |
| 143 | * @param string the table name |
| 144 | * @param string the column definition |
| 145 | * @param string the default value |
Andrey Andreev | 9fd79f5 | 2012-03-20 23:04:13 +0200 | [diff] [blame] | 146 | * @param bool should 'NOT NULL' be added |
Timothy Warren | 80ab816 | 2011-08-22 18:26:12 -0400 | [diff] [blame] | 147 | * @param string the field after which we should add the new field |
Andrey Andreev | 9fd79f5 | 2012-03-20 23:04:13 +0200 | [diff] [blame] | 148 | * @return string |
Timothy Warren | 80ab816 | 2011-08-22 18:26:12 -0400 | [diff] [blame] | 149 | */ |
Andrey Andreev | a0d4e41 | 2012-04-09 15:06:40 +0300 | [diff] [blame] | 150 | protected function _alter_table($alter_type, $table, $column_name, $column_definition = '', $default_value = '', $null = '', $after_field = '') |
Timothy Warren | 80ab816 | 2011-08-22 18:26:12 -0400 | [diff] [blame] | 151 | { |
Andrey Andreev | 5ef194d | 2012-06-08 01:12:54 +0300 | [diff] [blame] | 152 | $sql = 'ALTER TABLE '.$this->db->escape_identifiers($table).' '.$alter_type.' '.$this->db->escape_identifiers($column_name); |
Timothy Warren | 80ab816 | 2011-08-22 18:26:12 -0400 | [diff] [blame] | 153 | |
| 154 | // DROP has everything it needs now. |
Alex Bilbie | 48a2baf | 2012-06-02 11:09:54 +0100 | [diff] [blame] | 155 | if ($alter_type === 'DROP') |
Timothy Warren | 80ab816 | 2011-08-22 18:26:12 -0400 | [diff] [blame] | 156 | { |
| 157 | return $sql; |
| 158 | } |
| 159 | |
Andrey Andreev | 5ef194d | 2012-06-08 01:12:54 +0300 | [diff] [blame] | 160 | return $sql .' '.$column_definition |
| 161 | .($default_value !== '' ? " DEFAULT '".$default_value."'" : '') |
| 162 | .($null === NULL ? ' NULL' : ' NOT NULL') |
| 163 | .($after_field !== '' ? ' AFTER '.$this->db->escape_identifiers($after_field) : ''); |
Timothy Warren | 80ab816 | 2011-08-22 18:26:12 -0400 | [diff] [blame] | 164 | } |
| 165 | |
Timothy Warren | 80ab816 | 2011-08-22 18:26:12 -0400 | [diff] [blame] | 166 | } |
| 167 | |
| 168 | /* End of file pdo_forge.php */ |
Timothy Warren | 215890b | 2012-03-20 09:38:16 -0400 | [diff] [blame] | 169 | /* Location: ./system/database/drivers/pdo/pdo_forge.php */ |