2009-06-12 08:44:49 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// This file is part of Moodle - http://moodle.org/
|
|
|
|
//
|
|
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Oracle specific SQL code generator.
|
|
|
|
*
|
|
|
|
* @package moodlecore
|
|
|
|
* @subpackage DDL
|
|
|
|
* @copyright 1999 onwards Martin Dougiamas http://dougiamas.com
|
|
|
|
* 2001-3001 Eloy Lafuente (stronk7) http://contiento.com
|
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
|
*/
|
2006-08-16 22:58:51 +00:00
|
|
|
|
2008-05-15 21:40:00 +00:00
|
|
|
require_once($CFG->libdir.'/ddl/sql_generator.php');
|
|
|
|
|
2006-08-16 22:58:51 +00:00
|
|
|
/// This class generate SQL code to be used against Oracle
|
|
|
|
/// It extends XMLDBgenerator so everything can be
|
|
|
|
/// overriden as needed to generate correct SQL.
|
|
|
|
|
2008-05-15 21:40:00 +00:00
|
|
|
class oracle_sql_generator extends sql_generator {
|
2006-08-16 22:58:51 +00:00
|
|
|
|
|
|
|
/// Only set values that are different from the defaults present in XMLDBgenerator
|
|
|
|
|
2008-05-15 21:40:00 +00:00
|
|
|
public $statement_end = "\n/"; // String to be automatically added at the end of each statement
|
2006-08-20 21:56:54 +00:00
|
|
|
// Using "/" because the standard ";" isn't good for stored procedures (triggers)
|
|
|
|
|
2008-05-15 21:40:00 +00:00
|
|
|
public $number_type = 'NUMBER'; // Proper type for NUMBER(x) in this DB
|
2006-08-16 22:58:51 +00:00
|
|
|
|
2008-05-15 21:40:00 +00:00
|
|
|
public $unsigned_allowed = false; // To define in the generator must handle unsigned information
|
|
|
|
public $default_for_char = ' '; // To define the default to set for NOT NULLs CHARs without default (null=do nothing)
|
2006-08-22 16:39:14 +00:00
|
|
|
// Using this whitespace here because Oracle doesn't distinguish empty and null! :-(
|
2006-08-16 22:58:51 +00:00
|
|
|
|
2008-05-15 21:40:00 +00:00
|
|
|
public $drop_default_value_required = true; //To specify if the generator must use some DEFAULT clause to drop defaults
|
|
|
|
public $drop_default_value = NULL; //The DEFAULT clause required to drop defaults
|
2006-09-30 23:48:34 +00:00
|
|
|
|
2008-05-15 21:40:00 +00:00
|
|
|
public $default_after_null = false; //To decide if the default clause of each field must go after the null clause
|
2006-09-07 18:39:43 +00:00
|
|
|
|
2008-05-15 21:40:00 +00:00
|
|
|
public $sequence_extra_code = true; //Does the generator need to add extra code to generate the sequence fields
|
|
|
|
public $sequence_name = ''; //Particular name for inline sequences in this generator
|
2009-09-25 23:21:18 +00:00
|
|
|
public $sequence_cache_size = 20; //Size of the sequences values cache (20 = Oracle Default)
|
2006-10-02 17:06:37 +00:00
|
|
|
|
2008-05-15 21:40:00 +00:00
|
|
|
public $enum_inline_code = false; //Does the generator need to add inline code in the column definition
|
2006-08-16 22:58:51 +00:00
|
|
|
|
2008-05-15 21:40:00 +00:00
|
|
|
public $alter_column_sql = 'ALTER TABLE TABLENAME MODIFY (COLUMNSPECS)'; //The SQL template to alter columns
|
2006-09-24 00:02:34 +00:00
|
|
|
|
2006-08-16 22:58:51 +00:00
|
|
|
/**
|
2006-09-30 23:48:34 +00:00
|
|
|
* Creates one new XMLDBoci8po
|
2006-08-16 22:58:51 +00:00
|
|
|
*/
|
2008-05-15 21:40:00 +00:00
|
|
|
public function __construct($mdb) {
|
|
|
|
parent::__construct($mdb);
|
2006-08-16 22:58:51 +00:00
|
|
|
}
|
|
|
|
|
2008-11-21 21:40:50 +00:00
|
|
|
/**
|
|
|
|
* Reset a sequence to the id field of a table.
|
2009-08-31 14:23:40 +00:00
|
|
|
* @param string $table name of table or xmldb_table object
|
|
|
|
* @return array sql commands to execute
|
2008-11-21 21:40:50 +00:00
|
|
|
*/
|
2009-08-31 14:23:40 +00:00
|
|
|
public function getResetSequenceSQL($table) {
|
|
|
|
|
2008-11-21 21:40:50 +00:00
|
|
|
if (is_string($table)) {
|
|
|
|
$tablename = $table;
|
|
|
|
$xmldb_table = new xmldb_table($tablename);
|
|
|
|
} else {
|
|
|
|
$tablename = $table->getName();
|
|
|
|
$xmldb_table = $table;
|
|
|
|
}
|
|
|
|
// From http://www.acs.ilstu.edu/docs/oracle/server.101/b10759/statements_2011.htm
|
|
|
|
$value = (int)$this->mdb->get_field_sql('SELECT MAX(id) FROM {'.$tablename.'}');
|
|
|
|
$value++;
|
2009-05-01 23:49:31 +00:00
|
|
|
|
2008-11-21 21:40:50 +00:00
|
|
|
$seqname = $this->mdb->get_manager()->find_sequence_name($xmldb_table);
|
|
|
|
|
|
|
|
if (!$seqname) {
|
|
|
|
/// Fallback, seqname not found, something is wrong. Inform and use the alternative getNameForObject() method
|
|
|
|
$seqname = $this->getNameForObject($table, 'id', 'seq');
|
|
|
|
}
|
|
|
|
|
2009-08-31 14:23:40 +00:00
|
|
|
return array ("DROP SEQUENCE $seqname",
|
2009-09-25 23:21:18 +00:00
|
|
|
"CREATE SEQUENCE $seqname START WITH $value INCREMENT BY 1 NOMAXVALUE CACHE $this->sequence_cache_size");
|
2008-11-21 21:40:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-06-07 14:41:01 +00:00
|
|
|
/**
|
|
|
|
* Given one correct xmldb_table, returns the SQL statements
|
|
|
|
* to create temporary table (inside one array)
|
|
|
|
*/
|
|
|
|
public function getCreateTempTableSQL($xmldb_table) {
|
|
|
|
$sqlarr = $this->getCreateTableSQL($xmldb_table);
|
2008-06-07 14:57:47 +00:00
|
|
|
$sqlarr = preg_replace('/^CREATE TABLE (.*)/s', 'CREATE GLOBAL TEMPORARY TABLE $1 ON COMMIT PRESERVE ROWS', $sqlarr);
|
2008-06-07 14:41:01 +00:00
|
|
|
return $sqlarr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Given one correct xmldb_table and the new name, returns the SQL statements
|
|
|
|
* to drop it (inside one array)
|
|
|
|
*/
|
|
|
|
public function getDropTempTableSQL($xmldb_table) {
|
|
|
|
$sqlarr = $this->getDropTableSQL($xmldb_table);
|
2009-09-22 20:26:23 +00:00
|
|
|
array_unshift($sqlarr, "TRUNCATE TABLE ". $this->getTableName($xmldb_table)); // oracle requires truncate before being able to drop a temp table
|
2008-06-07 14:41:01 +00:00
|
|
|
return $sqlarr;
|
|
|
|
}
|
|
|
|
|
2006-08-16 22:58:51 +00:00
|
|
|
/**
|
|
|
|
* Given one XMLDB Type, lenght and decimals, returns the DB proper SQL type
|
|
|
|
*/
|
2008-05-15 21:40:00 +00:00
|
|
|
public function getTypeSQL($xmldb_type, $xmldb_length=null, $xmldb_decimals=null) {
|
2006-08-16 22:58:51 +00:00
|
|
|
|
|
|
|
switch ($xmldb_type) {
|
|
|
|
case XMLDB_TYPE_INTEGER: // From http://www.postgresql.org/docs/7.4/interactive/datatype.html
|
|
|
|
if (empty($xmldb_length)) {
|
|
|
|
$xmldb_length = 10;
|
|
|
|
}
|
|
|
|
$dbtype = 'NUMBER(' . $xmldb_length . ')';
|
|
|
|
break;
|
2009-09-24 16:40:43 +00:00
|
|
|
case XMLDB_TYPE_FLOAT:
|
2006-08-16 22:58:51 +00:00
|
|
|
case XMLDB_TYPE_NUMBER:
|
|
|
|
$dbtype = $this->number_type;
|
2006-08-31 00:19:57 +00:00
|
|
|
/// 38 is the max allowed
|
|
|
|
if ($xmldb_length > 38) {
|
|
|
|
$xmldb_length = 38;
|
|
|
|
}
|
2006-08-16 22:58:51 +00:00
|
|
|
if (!empty($xmldb_length)) {
|
|
|
|
$dbtype .= '(' . $xmldb_length;
|
|
|
|
if (!empty($xmldb_decimals)) {
|
|
|
|
$dbtype .= ',' . $xmldb_decimals;
|
|
|
|
}
|
|
|
|
$dbtype .= ')';
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case XMLDB_TYPE_CHAR:
|
|
|
|
$dbtype = 'VARCHAR2';
|
|
|
|
if (empty($xmldb_length)) {
|
|
|
|
$xmldb_length='255';
|
|
|
|
}
|
|
|
|
$dbtype .= '(' . $xmldb_length . ')';
|
|
|
|
break;
|
|
|
|
case XMLDB_TYPE_TEXT:
|
|
|
|
$dbtype = 'CLOB';
|
|
|
|
break;
|
|
|
|
case XMLDB_TYPE_BINARY:
|
|
|
|
$dbtype = 'BLOB';
|
|
|
|
break;
|
|
|
|
case XMLDB_TYPE_DATETIME:
|
|
|
|
$dbtype = 'DATE';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return $dbtype;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the code needed to create one sequence for the xmldb_table and xmldb_field passes
|
|
|
|
*/
|
2008-05-15 21:40:00 +00:00
|
|
|
public function getCreateSequenceSQL($xmldb_table, $xmldb_field) {
|
2006-08-16 22:58:51 +00:00
|
|
|
|
2006-09-30 23:48:34 +00:00
|
|
|
$results = array();
|
|
|
|
|
2006-08-19 00:58:30 +00:00
|
|
|
$sequence_name = $this->getNameForObject($xmldb_table->getName(), $xmldb_field->getName(), 'seq');
|
2006-09-20 21:00:45 +00:00
|
|
|
|
2009-09-25 23:21:18 +00:00
|
|
|
$sequence = "CREATE SEQUENCE $sequence_name START WITH 1 INCREMENT BY 1 NOMAXVALUE CACHE $this->sequence_cache_size";
|
2006-08-16 22:58:51 +00:00
|
|
|
|
2006-09-30 23:48:34 +00:00
|
|
|
$results[] = $sequence;
|
|
|
|
|
|
|
|
$results = array_merge($results, $this->getCreateTriggerSQL ($xmldb_table, $xmldb_field));
|
|
|
|
|
|
|
|
return $results;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the code needed to create one trigger for the xmldb_table and xmldb_field passed
|
|
|
|
*/
|
2008-05-15 21:40:00 +00:00
|
|
|
public function getCreateTriggerSQL($xmldb_table, $xmldb_field) {
|
2006-09-30 23:48:34 +00:00
|
|
|
|
2006-08-16 22:58:51 +00:00
|
|
|
$trigger_name = $this->getNameForObject($xmldb_table->getName(), $xmldb_field->getName(), 'trg');
|
2006-09-30 23:48:34 +00:00
|
|
|
$sequence_name = $this->getNameForObject($xmldb_table->getName(), $xmldb_field->getName(), 'seq');
|
2006-09-20 21:00:45 +00:00
|
|
|
|
2006-09-26 18:10:27 +00:00
|
|
|
$trigger = "CREATE TRIGGER " . $trigger_name;
|
2006-08-16 22:58:51 +00:00
|
|
|
$trigger.= "\n BEFORE INSERT";
|
2006-09-30 12:13:07 +00:00
|
|
|
$trigger.= "\nON " . $this->getTableName($xmldb_table);
|
2006-08-16 22:58:51 +00:00
|
|
|
$trigger.= "\n FOR EACH ROW";
|
|
|
|
$trigger.= "\nBEGIN";
|
2006-08-31 00:19:57 +00:00
|
|
|
$trigger.= "\n IF :new." . $this->getEncQuoted($xmldb_field->getName()) . ' IS NULL THEN';
|
2006-08-27 08:52:51 +00:00
|
|
|
$trigger.= "\n SELECT " . $sequence_name . '.nextval INTO :new.' . $this->getEncQuoted($xmldb_field->getName()) . " FROM dual;";
|
|
|
|
$trigger.= "\n END IF;";
|
2006-08-20 21:56:54 +00:00
|
|
|
$trigger.= "\nEND;";
|
2006-09-30 23:48:34 +00:00
|
|
|
|
|
|
|
return array($trigger);
|
2006-08-16 22:58:51 +00:00
|
|
|
}
|
|
|
|
|
2006-09-07 18:39:43 +00:00
|
|
|
/**
|
|
|
|
* Returns the code needed to drop one sequence for the xmldb_table and xmldb_field passed
|
|
|
|
* Can, optionally, specify if the underlying trigger will be also dropped
|
|
|
|
*/
|
2008-05-15 21:40:00 +00:00
|
|
|
public function getDropSequenceSQL($xmldb_table, $xmldb_field, $include_trigger=false) {
|
2006-09-07 18:39:43 +00:00
|
|
|
|
2009-05-01 23:49:31 +00:00
|
|
|
$result = array();
|
2006-09-20 21:00:45 +00:00
|
|
|
|
2009-05-01 23:49:31 +00:00
|
|
|
if ($sequence_name = $this->getSequenceFromDB($xmldb_table)) {
|
|
|
|
$result[] = "DROP SEQUENCE " . $sequence_name;
|
|
|
|
}
|
2006-09-07 18:39:43 +00:00
|
|
|
|
2009-05-01 23:49:31 +00:00
|
|
|
if ($trigger_name = $this->getTriggerFromDB($xmldb_table) && $include_trigger) {
|
|
|
|
$result[] = "DROP TRIGGER " . $trigger_name;
|
2006-09-07 18:39:43 +00:00
|
|
|
}
|
2009-05-01 23:49:31 +00:00
|
|
|
|
2006-09-07 18:39:43 +00:00
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the code (in array) needed to add one comment to the table
|
|
|
|
*/
|
|
|
|
function getCommentSQL ($xmldb_table) {
|
|
|
|
|
2006-09-30 12:13:07 +00:00
|
|
|
$comment = "COMMENT ON TABLE " . $this->getTableName($xmldb_table);
|
2008-05-15 21:40:00 +00:00
|
|
|
$comment.= " IS '" . $this->addslashes(substr($xmldb_table->getComment(), 0, 250)) . "'";
|
2006-08-16 22:58:51 +00:00
|
|
|
|
2006-09-07 18:39:43 +00:00
|
|
|
return array($comment);
|
|
|
|
}
|
2006-08-16 22:58:51 +00:00
|
|
|
|
2006-09-07 18:39:43 +00:00
|
|
|
/**
|
|
|
|
* Returns the code (array of statements) needed to execute extra statements on table drop
|
|
|
|
*/
|
2008-05-15 21:40:00 +00:00
|
|
|
public function getDropTableExtraSQL($xmldb_table) {
|
2008-05-20 23:24:40 +00:00
|
|
|
$xmldb_field = new xmldb_field('id'); // Fields having sequences should be exclusively, id.
|
2006-09-07 18:39:43 +00:00
|
|
|
return $this->getDropSequenceSQL($xmldb_table, $xmldb_field, false);
|
|
|
|
}
|
2006-08-16 22:58:51 +00:00
|
|
|
|
2006-09-30 23:48:34 +00:00
|
|
|
/**
|
|
|
|
* Returns the code (array of statements) needed to execute extra statements on table rename
|
|
|
|
*/
|
2008-05-15 21:40:00 +00:00
|
|
|
public function getRenameTableExtraSQL($xmldb_table, $newname) {
|
2006-09-30 23:48:34 +00:00
|
|
|
|
|
|
|
$results = array();
|
|
|
|
|
2008-05-20 23:24:40 +00:00
|
|
|
$xmldb_field = new xmldb_field('id'); // Fields having sequences should be exclusively, id.
|
2006-09-30 23:48:34 +00:00
|
|
|
|
2007-01-28 11:42:10 +00:00
|
|
|
$oldseqname = $this->getSequenceFromDB($xmldb_table);
|
2006-09-30 23:48:34 +00:00
|
|
|
$newseqname = $this->getNameForObject($newname, $xmldb_field->getName(), 'seq');
|
|
|
|
|
2007-01-28 11:42:10 +00:00
|
|
|
$oldtriggername = $this->getTriggerFromDB($xmldb_table);
|
2006-09-30 23:48:34 +00:00
|
|
|
$newtriggername = $this->getNameForObject($newname, $xmldb_field->getName(), 'trg');
|
|
|
|
|
2009-09-25 23:08:32 +00:00
|
|
|
/// Drop old trigger (first of all)
|
2006-09-30 23:48:34 +00:00
|
|
|
$results[] = "DROP TRIGGER " . $oldtriggername;
|
|
|
|
|
2009-09-25 23:08:32 +00:00
|
|
|
/// Rename the sequence, disablig CACHE before and enablig it later
|
|
|
|
/// to avoid consuming of values on rename
|
|
|
|
$results[] = 'ALTER SEQUENCE ' . $oldseqname . ' NOCACHE';
|
|
|
|
$results[] = 'RENAME ' . $oldseqname . ' TO ' . $newseqname;
|
2009-09-25 23:21:18 +00:00
|
|
|
$results[] = 'ALTER SEQUENCE ' . $newseqname . ' CACHE ' . $this->sequence_cache_size;
|
2006-09-30 23:48:34 +00:00
|
|
|
|
|
|
|
/// Create new trigger
|
2009-09-25 23:08:32 +00:00
|
|
|
$newt = new xmldb_table($newname); /// Temp table for trigger code generation
|
2006-10-02 16:19:48 +00:00
|
|
|
$results = array_merge($results, $this->getCreateTriggerSQL($newt, $xmldb_field));
|
|
|
|
|
|
|
|
/// Rename all the check constraints in the table
|
|
|
|
$oldtablename = $this->getTableName($xmldb_table);
|
|
|
|
$newtablename = $this->getTableName($newt);
|
|
|
|
|
|
|
|
$oldconstraintprefix = $this->getNameForObject($xmldb_table->getName(), '');
|
|
|
|
$newconstraintprefix = $this->getNameForObject($newt->getName(), '', '');
|
|
|
|
|
|
|
|
if ($constraints = $this->getCheckConstraintsFromDB($xmldb_table)) {
|
|
|
|
foreach ($constraints as $constraint) {
|
|
|
|
/// Drop the old constraint
|
|
|
|
$results[] = 'ALTER TABLE ' . $newtablename . ' DROP CONSTRAINT ' . $constraint->name;
|
|
|
|
}
|
|
|
|
}
|
2006-09-30 23:48:34 +00:00
|
|
|
|
|
|
|
return $results;
|
|
|
|
}
|
|
|
|
|
2006-09-24 00:02:34 +00:00
|
|
|
/**
|
2008-05-20 23:24:40 +00:00
|
|
|
* Given one xmldb_table and one xmldb_field, return the SQL statements needded to alter the field in the table
|
2006-09-24 00:02:34 +00:00
|
|
|
* Oracle has some severe limits:
|
|
|
|
* - clob and blob fields doesn't allow type to be specified
|
|
|
|
* - error is dropped if the null/not null clause is specified and hasn't changed
|
2006-09-24 17:39:20 +00:00
|
|
|
* - changes in precision/decimals of numeric fields drop an ORA-1440 error
|
2006-09-24 00:02:34 +00:00
|
|
|
*/
|
2008-05-25 02:42:06 +00:00
|
|
|
public function getAlterFieldSQL($xmldb_table, $xmldb_field, $skip_type_clause = NULL, $skip_default_clause = NULL, $skip_notnull_clause = NULL) {
|
2006-09-24 00:02:34 +00:00
|
|
|
|
2008-05-25 02:42:06 +00:00
|
|
|
$skip_type_clause = is_null($skip_type_clause) ? $this->alter_column_skip_type : $skip_type_clause;
|
|
|
|
$skip_default_clause = is_null($skip_default_clause) ? $this->alter_column_skip_default : $skip_default_clause;
|
|
|
|
$skip_notnull_clause = is_null($skip_notnull_clause) ? $this->alter_column_skip_notnull : $skip_notnull_clause;
|
2006-09-24 17:39:20 +00:00
|
|
|
|
|
|
|
$results = array(); /// To store all the needed SQL commands
|
|
|
|
|
|
|
|
/// Get the quoted name of the table and field
|
2006-09-30 12:13:07 +00:00
|
|
|
$tablename = $this->getTableName($xmldb_table);
|
2008-05-19 03:04:41 +00:00
|
|
|
$fieldname = $xmldb_field->getName();
|
2006-09-24 17:39:20 +00:00
|
|
|
|
|
|
|
/// Take a look to field metadata
|
2008-05-25 11:11:45 +00:00
|
|
|
$meta = $this->mdb->get_columns($xmldb_table->getName(), false);
|
2006-09-24 17:39:20 +00:00
|
|
|
$metac = $meta[$fieldname];
|
2008-05-15 21:40:00 +00:00
|
|
|
$oldmetatype = $metac->meta_type;
|
|
|
|
|
2006-09-24 17:39:20 +00:00
|
|
|
$oldlength = $metac->max_length;
|
|
|
|
/// To calculate the oldlength if the field is numeric, we need to perform one extra query
|
|
|
|
/// because ADOdb has one bug here. http://phplens.com/lens/lensforum/msgs.php?id=15883
|
|
|
|
if ($oldmetatype == 'N') {
|
|
|
|
$uppertablename = strtoupper($tablename);
|
|
|
|
$upperfieldname = strtoupper($fieldname);
|
2008-06-09 19:48:24 +00:00
|
|
|
if ($col = $this->mdb->get_record_sql("SELECT cname, precision
|
|
|
|
FROM col
|
|
|
|
WHERE tname = ? AND cname = ?",
|
|
|
|
array($uppertablename, $upperfieldname))) {
|
2006-09-24 17:39:20 +00:00
|
|
|
$oldlength = $col->precision;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$olddecimals = empty($metac->scale) ? null : $metac->scale;
|
|
|
|
$oldnotnull = empty($metac->not_null) ? false : $metac->not_null;
|
2006-09-25 18:22:06 +00:00
|
|
|
$olddefault = empty($metac->default_value) || strtoupper($metac->default_value) == 'NULL' ? null : $metac->default_value;
|
2006-09-24 17:39:20 +00:00
|
|
|
|
|
|
|
$typechanged = true; //By default, assume that the column type has changed
|
|
|
|
$precisionchanged = true; //By default, assume that the column precision has changed
|
|
|
|
$decimalchanged = true; //By default, assume that the column decimal has changed
|
|
|
|
$defaultchanged = true; //By default, assume that the column default has changed
|
|
|
|
$notnullchanged = true; //By default, assume that the column notnull has changed
|
|
|
|
|
|
|
|
$from_temp_fields = false; //By default don't assume we are going to use temporal fields
|
|
|
|
|
|
|
|
/// Detect if we are changing the type of the column
|
2008-05-15 21:40:00 +00:00
|
|
|
if (($xmldb_field->getType() == XMLDB_TYPE_INTEGER && $oldmetatype == 'I') ||
|
2006-09-24 17:39:20 +00:00
|
|
|
($xmldb_field->getType() == XMLDB_TYPE_NUMBER && $oldmetatype == 'N') ||
|
|
|
|
($xmldb_field->getType() == XMLDB_TYPE_FLOAT && $oldmetatype == 'F') ||
|
2008-05-15 21:40:00 +00:00
|
|
|
($xmldb_field->getType() == XMLDB_TYPE_CHAR && $oldmetatype == 'C') ||
|
|
|
|
($xmldb_field->getType() == XMLDB_TYPE_TEXT && $oldmetatype == 'X') ||
|
2006-09-24 17:39:20 +00:00
|
|
|
($xmldb_field->getType() == XMLDB_TYPE_BINARY && $oldmetatype == 'B')) {
|
|
|
|
$typechanged = false;
|
2008-05-15 21:40:00 +00:00
|
|
|
}
|
2006-09-24 17:39:20 +00:00
|
|
|
/// Detect if precision has changed
|
|
|
|
if (($xmldb_field->getType() == XMLDB_TYPE_TEXT) ||
|
|
|
|
($xmldb_field->getType() == XMLDB_TYPE_BINARY) ||
|
|
|
|
($oldlength == -1) ||
|
|
|
|
($xmldb_field->getLength() == $oldlength)) {
|
|
|
|
$precisionchanged = false;
|
|
|
|
}
|
|
|
|
/// Detect if decimal has changed
|
|
|
|
if (($xmldb_field->getType() == XMLDB_TYPE_INTEGER) ||
|
|
|
|
($xmldb_field->getType() == XMLDB_TYPE_CHAR) ||
|
|
|
|
($xmldb_field->getType() == XMLDB_TYPE_TEXT) ||
|
|
|
|
($xmldb_field->getType() == XMLDB_TYPE_BINARY) ||
|
|
|
|
(!$xmldb_field->getDecimals()) ||
|
|
|
|
(!$olddecimals) ||
|
|
|
|
($xmldb_field->getDecimals() == $olddecimals)) {
|
|
|
|
$decimalchanged = false;
|
|
|
|
}
|
|
|
|
/// Detect if we are changing the default
|
|
|
|
if (($xmldb_field->getDefault() === null && $olddefault === null) ||
|
|
|
|
($xmldb_field->getDefault() === $olddefault) || //Check both equality and
|
|
|
|
("'" . $xmldb_field->getDefault() . "'" === $olddefault)) { //Equality with quotes because ADOdb returns the default with quotes
|
|
|
|
$defaultchanged = false;
|
|
|
|
}
|
2006-09-25 18:22:06 +00:00
|
|
|
|
2006-09-24 17:39:20 +00:00
|
|
|
/// Detect if we are changing the nullability
|
|
|
|
if (($xmldb_field->getNotnull() === $oldnotnull)) {
|
|
|
|
$notnullchanged = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// If type has changed or precision or decimal has changed and we are in one numeric field
|
|
|
|
/// - create one temp column with the new specs
|
|
|
|
/// - fill the new column with the values from the old one
|
|
|
|
/// - drop the old column
|
|
|
|
/// - rename the temp column to the original name
|
2007-09-04 23:18:41 +00:00
|
|
|
if (($typechanged) || (($oldmetatype == 'N' || $oldmetatype == 'I') && ($precisionchanged || $decimalchanged))) {
|
2006-09-24 17:39:20 +00:00
|
|
|
$tempcolname = $xmldb_field->getName() . '_alter_column_tmp';
|
|
|
|
/// Prevent temp field to have both NULL/NOT NULL and DEFAULT constraints
|
2008-05-25 02:42:06 +00:00
|
|
|
$skip_notnull_clause = true;
|
|
|
|
$skip_default_clause = true;
|
2006-09-24 17:39:20 +00:00
|
|
|
$xmldb_field->setName($tempcolname);
|
|
|
|
/// Create the temporal column
|
2008-05-25 02:42:06 +00:00
|
|
|
$results = array_merge($results, $this->getAddFieldSQL($xmldb_table, $xmldb_field, $skip_type_clause, $skip_type_clause, $skip_notnull_clause));
|
2006-09-24 17:39:20 +00:00
|
|
|
/// Copy contents from original col to the temporal one
|
|
|
|
$results[] = 'UPDATE ' . $tablename . ' SET ' . $tempcolname . ' = ' . $fieldname;
|
|
|
|
/// Drop the old column
|
|
|
|
$xmldb_field->setName($fieldname); //Set back the original field name
|
|
|
|
$results = array_merge($results, $this->getDropFieldSQL($xmldb_table, $xmldb_field));
|
|
|
|
/// Rename the temp column to the original one
|
|
|
|
$results[] = 'ALTER TABLE ' . $tablename . ' RENAME COLUMN ' . $tempcolname . ' TO ' . $fieldname;
|
|
|
|
/// Mark we have performed one change based in temp fields
|
|
|
|
$from_temp_fields = true;
|
|
|
|
/// Re-enable the notnull and default sections so the general AlterFieldSQL can use it
|
2008-05-25 02:42:06 +00:00
|
|
|
$skip_notnull_clause = false;
|
|
|
|
$skip_default_clause = false;
|
2006-09-25 18:22:06 +00:00
|
|
|
/// Dissable the type section because we have done it with the temp field
|
2008-05-25 02:42:06 +00:00
|
|
|
$skip_type_clause = true;
|
2006-09-28 23:06:04 +00:00
|
|
|
/// If new field is nullable, nullability hasn't changed
|
|
|
|
if (!$xmldb_field->getNotnull()) {
|
|
|
|
$notnullchanged = false;
|
|
|
|
}
|
|
|
|
/// If new field hasn't default, default hasn't changed
|
|
|
|
if ($xmldb_field->getDefault() === null) {
|
|
|
|
$defaultchanged = false;
|
|
|
|
}
|
2006-09-24 17:39:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// If type and precision and decimals hasn't changed, prevent the type clause
|
|
|
|
if (!$typechanged && !$precisionchanged && !$decimalchanged) {
|
2008-05-25 02:42:06 +00:00
|
|
|
$skip_type_clause = true;
|
2006-09-24 17:39:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// If NULL/NOT NULL hasn't changed
|
|
|
|
/// prevent null clause to be specified
|
|
|
|
if (!$notnullchanged) {
|
2008-05-25 02:42:06 +00:00
|
|
|
$skip_notnull_clause = true; /// Initially, prevent the notnull clause
|
2006-09-24 17:39:20 +00:00
|
|
|
/// But, if we have used the temp field and the new field is not null, then enforce the not null clause
|
|
|
|
if ($from_temp_fields && $xmldb_field->getNotnull()) {
|
2008-05-25 02:42:06 +00:00
|
|
|
$skip_notnull_clause = false;
|
2006-09-24 17:39:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/// If default hasn't changed
|
|
|
|
/// prevent default clause to be specified
|
|
|
|
if (!$defaultchanged) {
|
2008-05-25 02:42:06 +00:00
|
|
|
$skip_default_clause = true; /// Initially, prevent the default clause
|
2006-09-24 17:39:20 +00:00
|
|
|
/// But, if we have used the temp field and the new field has default clause, then enforce the default clause
|
2008-05-15 21:40:00 +00:00
|
|
|
if ($from_temp_fields) {
|
|
|
|
$default_clause = $this->getDefaultClause($xmldb_field);
|
|
|
|
if ($default_clause) {
|
2008-05-25 02:42:06 +00:00
|
|
|
$skip_notnull_clause = false;
|
2008-05-15 21:40:00 +00:00
|
|
|
}
|
2006-09-24 17:39:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// If arriving here, something is not being skiped (type, notnull, default), calculate the standar AlterFieldSQL
|
2008-05-25 02:42:06 +00:00
|
|
|
if (!$skip_type_clause || !$skip_notnull_clause || !$skip_default_clause) {
|
|
|
|
$results = array_merge($results, parent::getAlterFieldSQL($xmldb_table, $xmldb_field, $skip_type_clause, $skip_default_clause, $skip_notnull_clause));
|
2006-09-24 17:39:20 +00:00
|
|
|
return $results;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Finally return results
|
|
|
|
return $results;
|
2006-09-24 00:02:34 +00:00
|
|
|
}
|
|
|
|
|
2008-05-15 21:40:00 +00:00
|
|
|
/**
|
2008-05-20 23:24:40 +00:00
|
|
|
* Given one xmldb_table and one xmldb_field, return the SQL statements needded to drop its enum
|
2006-09-30 17:03:17 +00:00
|
|
|
* (usually invoked from getModifyEnumSQL()
|
2009-05-01 23:49:31 +00:00
|
|
|
*
|
|
|
|
* TODO: Moodle 2.1 - drop in Moodle 2.1
|
2008-05-15 21:40:00 +00:00
|
|
|
*/
|
|
|
|
public function getDropEnumSQL($xmldb_table, $xmldb_field) {
|
2007-09-11 19:08:11 +00:00
|
|
|
/// Let's introspect to know the real name of the check constraint
|
|
|
|
if ($check_constraints = $this->getCheckConstraintsFromDB($xmldb_table, $xmldb_field)) {
|
|
|
|
$check_constraint = array_shift($check_constraints); /// Get the 1st (should be only one)
|
|
|
|
$constraint_name = strtolower($check_constraint->name); /// Extract the REAL name
|
|
|
|
/// All we have to do is to drop the check constraint
|
2008-05-15 21:40:00 +00:00
|
|
|
return array('ALTER TABLE ' . $this->getTableName($xmldb_table) .
|
2007-09-11 19:08:11 +00:00
|
|
|
' DROP CONSTRAINT ' . $constraint_name);
|
|
|
|
} else { /// Constraint not found. Nothing to do
|
|
|
|
return array();
|
|
|
|
}
|
2008-05-15 21:40:00 +00:00
|
|
|
}
|
2006-09-30 17:03:17 +00:00
|
|
|
|
2006-09-25 18:22:06 +00:00
|
|
|
/**
|
2008-05-20 23:24:40 +00:00
|
|
|
* Given one xmldb_table and one xmldb_field, return the SQL statements needded to create its default
|
2006-09-25 18:22:06 +00:00
|
|
|
* (usually invoked from getModifyDefaultSQL()
|
|
|
|
*/
|
2008-05-15 21:40:00 +00:00
|
|
|
public function getCreateDefaultSQL($xmldb_table, $xmldb_field) {
|
2006-09-25 18:22:06 +00:00
|
|
|
/// Just a wrapper over the getAlterFieldSQL() function for Oracle that
|
|
|
|
/// is capable of handling defaults
|
|
|
|
return $this->getAlterFieldSQL($xmldb_table, $xmldb_field);
|
|
|
|
}
|
2008-05-15 21:40:00 +00:00
|
|
|
|
|
|
|
/**
|
2008-05-20 23:24:40 +00:00
|
|
|
* Given one xmldb_table and one xmldb_field, return the SQL statements needded to drop its default
|
2006-09-25 18:22:06 +00:00
|
|
|
* (usually invoked from getModifyDefaultSQL()
|
2008-05-15 21:40:00 +00:00
|
|
|
*/
|
|
|
|
public function getDropDefaultSQL($xmldb_table, $xmldb_field) {
|
2006-09-25 18:22:06 +00:00
|
|
|
/// Just a wrapper over the getAlterFieldSQL() function for Oracle that
|
|
|
|
/// is capable of handling defaults
|
|
|
|
return $this->getAlterFieldSQL($xmldb_table, $xmldb_field);
|
2008-05-15 21:40:00 +00:00
|
|
|
}
|
2006-09-25 18:22:06 +00:00
|
|
|
|
2006-10-02 16:19:48 +00:00
|
|
|
/**
|
2008-05-20 23:24:40 +00:00
|
|
|
* Given one xmldb_table returns one array with all the check constrainsts
|
2006-10-02 16:19:48 +00:00
|
|
|
* in the table (fetched from DB)
|
2007-09-09 16:28:16 +00:00
|
|
|
* Optionally the function allows one xmldb_field to be specified in
|
|
|
|
* order to return only the check constraints belonging to one field.
|
2006-10-02 16:19:48 +00:00
|
|
|
* Each element contains the name of the constraint and its description
|
|
|
|
* If no check constraints are found, returns an empty array
|
2009-05-01 23:49:31 +00:00
|
|
|
*
|
|
|
|
* TODO: Moodle 2.1 - drop in Moodle 2.1
|
2006-10-02 16:19:48 +00:00
|
|
|
*/
|
2008-05-15 21:40:00 +00:00
|
|
|
public function getCheckConstraintsFromDB($xmldb_table, $xmldb_field = null) {
|
2006-10-02 16:19:48 +00:00
|
|
|
|
|
|
|
$results = array();
|
|
|
|
|
|
|
|
$tablename = strtoupper($this->getTableName($xmldb_table));
|
|
|
|
|
2008-06-09 19:48:24 +00:00
|
|
|
if ($constraints = $this->mdb->get_records_sql("SELECT lower(c.constraint_name) AS name, c.search_condition AS description
|
|
|
|
FROM user_constraints c
|
|
|
|
WHERE c.table_name = ?
|
|
|
|
AND c.constraint_type = 'C'
|
|
|
|
AND c.constraint_name not like 'SYS%'",
|
|
|
|
array($tablename))) {
|
2006-10-02 16:19:48 +00:00
|
|
|
foreach ($constraints as $constraint) {
|
|
|
|
$results[$constraint->name] = $constraint;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-09-10 22:00:24 +00:00
|
|
|
/// Filter by the required field if specified
|
|
|
|
if ($xmldb_field) {
|
2007-09-10 22:30:26 +00:00
|
|
|
$filtered_results = array();
|
2007-09-10 22:00:24 +00:00
|
|
|
$filter = $xmldb_field->getName();
|
2007-09-10 22:30:26 +00:00
|
|
|
/// Lets clean a bit each constraint description, looking for the filtered field
|
|
|
|
foreach ($results as $key => $result) {
|
|
|
|
/// description starts by "$filter IN" assume it's a constraint beloging to the field
|
|
|
|
if (preg_match("/^{$filter} IN/i", $result->description)) {
|
|
|
|
$filtered_results[$key] = $result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/// Assign filtered results to the final results array
|
|
|
|
$results = $filtered_results;
|
2007-09-10 22:00:24 +00:00
|
|
|
}
|
|
|
|
|
2006-10-02 16:19:48 +00:00
|
|
|
return $results;
|
|
|
|
}
|
|
|
|
|
2006-10-08 09:36:33 +00:00
|
|
|
/**
|
2008-05-20 23:24:40 +00:00
|
|
|
* Given one xmldb_table returns one string with the sequence of the table
|
2006-10-08 09:36:33 +00:00
|
|
|
* in the table (fetched from DB)
|
|
|
|
* The sequence name for oracle is calculated by looking the corresponding
|
|
|
|
* trigger and retrieving the sequence name from it (because sequences are
|
|
|
|
* independent elements)
|
|
|
|
* If no sequence is found, returns false
|
|
|
|
*/
|
2008-05-15 21:40:00 +00:00
|
|
|
public function getSequenceFromDB($xmldb_table) {
|
2006-10-08 09:36:33 +00:00
|
|
|
|
2008-04-26 22:46:03 +00:00
|
|
|
$tablename = strtoupper($this->getTableName($xmldb_table));
|
|
|
|
$prefixupper = strtoupper($this->prefix);
|
2006-10-08 09:36:33 +00:00
|
|
|
$sequencename = false;
|
|
|
|
|
2008-06-09 19:48:24 +00:00
|
|
|
if ($trigger = $this->mdb->get_record_sql("SELECT trigger_name, trigger_body
|
|
|
|
FROM user_triggers
|
|
|
|
WHERE table_name = ? AND trigger_name LIKE ?",
|
|
|
|
array($tablename, "{$prefixupper}%_ID%_TRG"))) {
|
2006-10-08 09:36:33 +00:00
|
|
|
/// If trigger found, regexp it looking for the sequence name
|
|
|
|
preg_match('/.*SELECT (.*)\.nextval/i', $trigger->trigger_body, $matches);
|
|
|
|
if (isset($matches[1])) {
|
|
|
|
$sequencename = $matches[1];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $sequencename;
|
|
|
|
}
|
|
|
|
|
2007-01-28 11:42:10 +00:00
|
|
|
/**
|
2008-05-20 23:24:40 +00:00
|
|
|
* Given one xmldb_table returns one string with the trigger
|
2007-01-28 11:42:10 +00:00
|
|
|
* in the table (fetched from DB)
|
|
|
|
* If no trigger is found, returns false
|
|
|
|
*/
|
2008-05-15 21:40:00 +00:00
|
|
|
public function getTriggerFromDB($xmldb_table) {
|
2007-01-28 11:42:10 +00:00
|
|
|
|
2008-04-26 22:46:03 +00:00
|
|
|
$tablename = strtoupper($this->getTableName($xmldb_table));
|
|
|
|
$prefixupper = strtoupper($this->prefix);
|
2007-01-28 11:42:10 +00:00
|
|
|
$triggername = false;
|
|
|
|
|
2008-06-09 19:48:24 +00:00
|
|
|
if ($trigger = $this->mdb->get_record_sql("SELECT trigger_name, trigger_body
|
|
|
|
FROM user_triggers
|
|
|
|
WHERE table_name = ? AND trigger_name LIKE ?",
|
|
|
|
array($tablename, "{$prefixupper}%_ID%_TRG"))) {
|
2007-01-28 11:42:10 +00:00
|
|
|
$triggername = $trigger->trigger_name;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $triggername;
|
|
|
|
}
|
|
|
|
|
2007-01-27 22:11:04 +00:00
|
|
|
/**
|
|
|
|
* Given one object name and it's type (pk, uk, fk, ck, ix, uix, seq, trg)
|
|
|
|
* return if such name is currently in use (true) or no (false)
|
|
|
|
* (invoked from getNameForObject()
|
|
|
|
*/
|
2008-05-15 21:40:00 +00:00
|
|
|
public function isNameInUse($object_name, $type, $table_name) {
|
2007-01-27 22:11:04 +00:00
|
|
|
switch($type) {
|
|
|
|
case 'ix':
|
|
|
|
case 'uix':
|
|
|
|
case 'seq':
|
|
|
|
case 'trg':
|
2008-06-09 19:48:24 +00:00
|
|
|
if ($check = $this->mdb->get_records_sql("SELECT object_name
|
|
|
|
FROM user_objects
|
|
|
|
WHERE lower(object_name) = ?", array(strtolower($object_name)))) {
|
2007-01-27 22:11:04 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'pk':
|
|
|
|
case 'uk':
|
|
|
|
case 'fk':
|
|
|
|
case 'ck':
|
2008-06-09 19:48:24 +00:00
|
|
|
if ($check = $this->mdb->get_records_sql("SELECT constraint_name
|
|
|
|
FROM user_constraints
|
|
|
|
WHERE lower(constraint_name) = ?", array(strtolower($object_name)))) {
|
2007-01-27 22:11:04 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return false; //No name in use found
|
|
|
|
}
|
|
|
|
|
2008-05-15 21:40:00 +00:00
|
|
|
public function addslashes($s) {
|
|
|
|
// do not use php addslashes() because it depends on PHP quote settings!
|
|
|
|
$s = str_replace("'", "''", $s);
|
|
|
|
return $s;
|
|
|
|
}
|
|
|
|
|
2006-08-16 22:58:51 +00:00
|
|
|
/**
|
|
|
|
* Returns an array of reserved words (lowercase) for this DB
|
|
|
|
*/
|
2008-05-15 21:40:00 +00:00
|
|
|
public static function getReservedWords() {
|
2006-08-16 23:17:28 +00:00
|
|
|
/// This file contains the reserved words for Oracle databases
|
|
|
|
/// from http://download-uk.oracle.com/docs/cd/B10501_01/server.920/a96540/ap_keywd.htm
|
2006-08-16 22:58:51 +00:00
|
|
|
$reserved_words = array (
|
|
|
|
'access', 'add', 'all', 'alter', 'and', 'any',
|
|
|
|
'as', 'asc', 'audit', 'between', 'by', 'char',
|
|
|
|
'check', 'cluster', 'column', 'comment',
|
|
|
|
'compress', 'connect', 'create', 'current',
|
|
|
|
'date', 'decimal', 'default', 'delete', 'desc',
|
|
|
|
'distinct', 'drop', 'else', 'exclusive', 'exists',
|
|
|
|
'file', 'float', 'for', 'from', 'grant', 'group',
|
|
|
|
'having', 'identified', 'immediate', 'in',
|
|
|
|
'increment', 'index', 'initial', 'insert',
|
|
|
|
'integer', 'intersect', 'into', 'is', 'level',
|
|
|
|
'like', 'lock', 'long', 'maxextents', 'minus',
|
|
|
|
'mlslabel', 'mode', 'modify', 'noaudit',
|
|
|
|
'nocompress', 'not', 'nowait', 'null', 'number',
|
|
|
|
'of', 'offline', 'on', 'online', 'option', 'or',
|
|
|
|
'order', 'pctfree', 'prior', 'privileges',
|
|
|
|
'public', 'raw', 'rename', 'resource', 'revoke',
|
|
|
|
'row', 'rowid', 'rownum', 'rows', 'select',
|
|
|
|
'session', 'set', 'share', 'size', 'smallint',
|
|
|
|
'start', 'successful', 'synonym', 'sysdate',
|
|
|
|
'table', 'then', 'to', 'trigger', 'uid', 'union',
|
|
|
|
'unique', 'update', 'user', 'validate', 'values',
|
|
|
|
'varchar', 'varchar2', 'view', 'whenever',
|
|
|
|
'where', 'with'
|
2006-09-20 21:00:45 +00:00
|
|
|
);
|
2006-08-16 22:58:51 +00:00
|
|
|
return $reserved_words;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|