blob: bd265b6e0fbab073462a8f3bc21a54ce5a993648 [file] [log] [blame]
Andrey Andreev24abcb92012-01-05 20:40:15 +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 Andreev24abcb92012-01-05 20:40:15 +02008 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05009 * Licensed under the Open Software License version 3.0
Andrey Andreev24abcb92012-01-05 20:40:15 +020010 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -050011 * This source file is subject to the Open Software License (OSL 3.0) that is
Andrey Andreev342a4662012-01-24 15:24:00 +020012 * bundled with this package in the files license.txt / license.rst. It is
Derek Jonesf4a4bd82011-10-20 12:18:42 -050013 * 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 * Oracle 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_oci8_forge extends CI_DB_forge {
36
Andrey Andreevd947eba2012-04-09 14:58:28 +030037 protected $_create_database = FALSE;
38 protected $_drop_database = FALSE;
39 protected $_drop_table = 'DROP TABLE %s';
Derek Allard2067d1a2008-11-13 22:59:24 +000040
41 /**
42 * Create Table
43 *
Derek Allard2067d1a2008-11-13 22:59:24 +000044 * @param string the table name
45 * @param array the fields
46 * @param mixed primary key(s)
47 * @param mixed key(s)
Andrey Andreevaa786c92012-01-16 12:14:45 +020048 * @param bool should 'IF NOT EXISTS' be added to the SQL
Andrey Andreev24abcb92012-01-05 20:40:15 +020049 * @return string
Derek Allard2067d1a2008-11-13 22:59:24 +000050 */
Andrey Andreeva0d4e412012-04-09 15:06:40 +030051 protected function _create_table($table, $fields, $primary_keys, $keys, $if_not_exists)
Derek Allard2067d1a2008-11-13 22:59:24 +000052 {
53 $sql = 'CREATE TABLE ';
Barry Mienydd671972010-10-04 16:33:58 +020054
Derek Allard2067d1a2008-11-13 22:59:24 +000055 if ($if_not_exists === TRUE)
56 {
57 $sql .= 'IF NOT EXISTS ';
58 }
Barry Mienydd671972010-10-04 16:33:58 +020059
Andrey Andreevea09a8a2012-04-06 20:50:07 +030060 $sql .= $this->db->escape_identifiers($table).' (';
Derek Allard2067d1a2008-11-13 22:59:24 +000061 $current_field_count = 0;
62
Andrey Andreev8f220572012-03-02 13:05:45 +020063 foreach ($fields as $field => $attributes)
Derek Allard2067d1a2008-11-13 22:59:24 +000064 {
65 // Numeric field names aren't allowed in databases, so if the key is
66 // numeric, we know it was assigned by PHP and the developer manually
67 // entered the field information, so we'll simply add it to the list
68 if (is_numeric($field))
69 {
Andrey Andreevaa786c92012-01-16 12:14:45 +020070 $sql .= "\n\t".$attributes;
Derek Allard2067d1a2008-11-13 22:59:24 +000071 }
72 else
73 {
74 $attributes = array_change_key_case($attributes, CASE_UPPER);
Barry Mienydd671972010-10-04 16:33:58 +020075
Andrey Andreev4a315682012-01-26 02:03:10 +020076 $sql .= "\n\t".$this->db->protect_identifiers($field).' '.$attributes['TYPE']
Andrey Andreev8f220572012-03-02 13:05:45 +020077 .((isset($attributes['UNSINGED']) && $attributes['UNSIGNED'] === TRUE) ? ' UNSIGNED' : '')
78 .(isset($attributes['DEFAULT']) ? " DEFAULT '".$attributes['DEFAULT']."'" : '')
79 .((isset($attributes['NULL']) && $attributes['NULL'] === TRUE) ? '' : ' NOT NULL')
80 .(isset($attributes['CONSTRAINT']) ? ' CONSTRAINT '.$attributes['CONSTRAINT'] : '');
Derek Allard2067d1a2008-11-13 22:59:24 +000081 }
Barry Mienydd671972010-10-04 16:33:58 +020082
Derek Allard2067d1a2008-11-13 22:59:24 +000083 // don't add a comma on the end of the last field
84 if (++$current_field_count < count($fields))
85 {
86 $sql .= ',';
87 }
88 }
89
90 if (count($primary_keys) > 0)
91 {
Andrey Andreev4a315682012-01-26 02:03:10 +020092 $primary_keys = $this->db->protect_identifiers($primary_keys);
Andrey Andreev8f220572012-03-02 13:05:45 +020093 $sql .= ",\n\tCONSTRAINT ".$table.' PRIMARY KEY ('.implode(', ', $primary_keys).')';
Derek Allard2067d1a2008-11-13 22:59:24 +000094 }
95
96 if (is_array($keys) && count($keys) > 0)
97 {
98 foreach ($keys as $key)
99 {
100 if (is_array($key))
101 {
Andrey Andreev4a315682012-01-26 02:03:10 +0200102 $key = $this->db->protect_identifiers($key);
Derek Allard2067d1a2008-11-13 22:59:24 +0000103 }
104 else
105 {
Andrey Andreev4a315682012-01-26 02:03:10 +0200106 $key = array($this->db->protect_identifiers($key));
Derek Allard2067d1a2008-11-13 22:59:24 +0000107 }
Barry Mienydd671972010-10-04 16:33:58 +0200108
Andrey Andreevaa786c92012-01-16 12:14:45 +0200109 $sql .= ",\n\tUNIQUE COLUMNS (".implode(', ', $key).')';
Derek Allard2067d1a2008-11-13 22:59:24 +0000110 }
111 }
Barry Mienydd671972010-10-04 16:33:58 +0200112
Andrey Andreevaa786c92012-01-16 12:14:45 +0200113 return $sql."\n)";
Derek Allard2067d1a2008-11-13 22:59:24 +0000114 }
115
116 // --------------------------------------------------------------------
117
118 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000119 * Alter table query
120 *
121 * Generates a platform-specific query so that a table can be altered
122 * Called by add_column(), drop_column(), and column_alter(),
123 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000124 * @param string the ALTER type (ADD, DROP, CHANGE)
125 * @param string the column name
126 * @param string the table name
127 * @param string the column definition
128 * @param string the default value
Andrey Andreevaa786c92012-01-16 12:14:45 +0200129 * @param bool should 'NOT NULL' be added
Derek Allard2067d1a2008-11-13 22:59:24 +0000130 * @param string the field after which we should add the new field
Andrey Andreev24abcb92012-01-05 20:40:15 +0200131 * @return string
Derek Allard2067d1a2008-11-13 22:59:24 +0000132 */
Andrey Andreeva0d4e412012-04-09 15:06:40 +0300133 protected function _alter_table($alter_type, $table, $column_name, $column_definition = '', $default_value = '', $null = '', $after_field = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000134 {
Andrey Andreev4a315682012-01-26 02:03:10 +0200135 $sql = 'ALTER TABLE '.$this->db->protect_identifiers($table).' '.$alter_type.' '.$this->db->protect_identifiers($column_name);
Derek Allard2067d1a2008-11-13 22:59:24 +0000136
137 // DROP has everything it needs now.
Andrey Andreevaa786c92012-01-16 12:14:45 +0200138 if ($alter_type === 'DROP')
Derek Allard2067d1a2008-11-13 22:59:24 +0000139 {
140 return $sql;
141 }
142
Andrey Andreevaa786c92012-01-16 12:14:45 +0200143 return $sql.' '.$column_definition
144 .($default_value != '' ? ' DEFAULT "'.$default_value.'"' : '')
145 .($null === NULL ? ' NULL' : ' NOT NULL')
Andrey Andreev4a315682012-01-26 02:03:10 +0200146 .($after_field != '' ? ' AFTER '.$this->db->protect_identifiers($after_field) : '');
Barry Mienydd671972010-10-04 16:33:58 +0200147
Derek Allard2067d1a2008-11-13 22:59:24 +0000148 }
149
Derek Allard2067d1a2008-11-13 22:59:24 +0000150}
151
152/* End of file oci8_forge.php */
Timothy Warren215890b2012-03-20 09:38:16 -0400153/* Location: ./system/database/drivers/oci8/oci8_forge.php */