123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146 |
- <?php
- require_once 'MDB2/Driver/Manager/Common.php';
- class MDB2_Driver_Manager_mssql extends MDB2_Driver_Manager_Common
- {
-
-
- function createDatabase($name, $options = array())
- {
- $db = $this->getDBInstance();
- if (MDB2::isError($db)) {
- return $db;
- }
- $name = $db->quoteIdentifier($name, true);
- $query = "CREATE DATABASE $name";
- if ($db->options['database_device']) {
- $query.= ' ON '.$db->options['database_device'];
- $query.= $db->options['database_size'] ? '=' .
- $db->options['database_size'] : '';
- }
- if (!empty($options['collation'])) {
- $query .= ' COLLATE ' . $options['collation'];
- }
- return $db->standaloneQuery($query, null, true);
- }
-
-
-
- function alterDatabase($name, $options = array())
- {
- $db = $this->getDBInstance();
- if (MDB2::isError($db)) {
- return $db;
- }
- $query = '';
- if (!empty($options['name'])) {
- $query .= ' MODIFY NAME = ' .$db->quoteIdentifier($options['name'], true);
- }
- if (!empty($options['collation'])) {
- $query .= ' COLLATE ' . $options['collation'];
- }
- if (!empty($query)) {
- $query = 'ALTER DATABASE '. $db->quoteIdentifier($name, true) . $query;
- return $db->standaloneQuery($query, null, true);
- }
- return MDB2_OK;
- }
-
-
-
- function dropDatabase($name)
- {
- $db = $this->getDBInstance();
- if (MDB2::isError($db)) {
- return $db;
- }
- $name = $db->quoteIdentifier($name, true);
- return $db->standaloneQuery("DROP DATABASE $name", null, true);
- }
-
-
-
- function _getTemporaryTableQuery()
- {
- return '';
- }
-
-
-
- function _getAdvancedFKOptions($definition)
- {
- $query = '';
- if (!empty($definition['onupdate'])) {
- $query .= ' ON UPDATE '.$definition['onupdate'];
- }
- if (!empty($definition['ondelete'])) {
- $query .= ' ON DELETE '.$definition['ondelete'];
- }
- return $query;
- }
-
-
-
- function createTable($name, $fields, $options = array())
- {
- if (!empty($options['temporary'])) {
- $name = '#'.$name;
- }
- return parent::createTable($name, $fields, $options);
- }
-
-
-
- function truncateTable($name)
- {
- $db = $this->getDBInstance();
- if (MDB2::isError($db)) {
- return $db;
- }
- $name = $db->quoteIdentifier($name, true);
- $result = $db->exec("TRUNCATE TABLE $name");
- if (MDB2::isError($result)) {
- return $result;
- }
- return MDB2_OK;
- }
-
-
-
- function vacuum($table = null, $options = array())
- {
- $db = $this->getDBInstance();
- if (MDB2::isError($db)) {
- return $db;
- }
- $timeout = isset($options['timeout']) ? (int)$options['timeout'] : 300;
- $query = 'NSControl Create';
- $result = $db->exec($query);
- if (MDB2::isError($result)) {
- return $result;
- }
- $result = $db->exec('EXEC NSVacuum '.$timeout);
- if (MDB2::isError($result)) {
- return $result;
- }
- return MDB2_OK;
- }
-
-
-
- function alterTable($name, $changes, $check)
- {
- $db = $this->getDBInstance();
- if (MDB2::isError($db)) {
- return $db;
- }
- $name_quoted = $db->quoteIdentifier($name, true);
- foreach ($changes as $change_name => $change) {
- switch ($change_name) {
- case 'remove':
- case 'rename':
- case 'add':
- case 'change':
- case 'name':
- break;
- default:
- return $db->raiseError(MDB2_ERROR_CANNOT_ALTER, null, null,
- 'change type "'.$change_name.'" not yet supported', __FUNCTION__);
- }
- }
- if ($check) {
- return MDB2_OK;
- }
- $idxname_format = $db->getOption('idxname_format');
- $db->setOption('idxname_format', '%s');
- if (!empty($changes['remove']) && is_array($changes['remove'])) {
- $result = $this->_dropConflictingIndices($name, array_keys($changes['remove']));
- if (MDB2::isError($result)) {
- $db->setOption('idxname_format', $idxname_format);
- return $result;
- }
- $result = $this->_dropConflictingConstraints($name, array_keys($changes['remove']));
- if (MDB2::isError($result)) {
- $db->setOption('idxname_format', $idxname_format);
- return $result;
- }
- $query = '';
- foreach ($changes['remove'] as $field_name => $field) {
- if ($query) {
- $query.= ', ';
- }
- $field_name = $db->quoteIdentifier($field_name, true);
- $query.= 'COLUMN ' . $field_name;
- }
- $result = $db->exec("ALTER TABLE $name_quoted DROP $query");
- if (MDB2::isError($result)) {
- $db->setOption('idxname_format', $idxname_format);
- return $result;
- }
- }
- if (!empty($changes['rename']) && is_array($changes['rename'])) {
- foreach ($changes['rename'] as $field_name => $field) {
- $field_name = $db->quoteIdentifier($field_name, true);
- $result = $db->exec("sp_rename '$name_quoted.$field_name', '".$field['name']."', 'COLUMN'");
- if (MDB2::isError($result)) {
- $db->setOption('idxname_format', $idxname_format);
- return $result;
- }
- }
- }
- if (!empty($changes['add']) && is_array($changes['add'])) {
- $query = '';
- foreach ($changes['add'] as $field_name => $field) {
- if ($query) {
- $query.= ', ';
- } else {
- $query.= 'ADD ';
- }
- $query.= $db->getDeclaration($field['type'], $field_name, $field);
- }
- $result = $db->exec("ALTER TABLE $name_quoted $query");
- if (MDB2::isError($result)) {
- $db->setOption('idxname_format', $idxname_format);
- return $result;
- }
- }
- $dropped_indices = array();
- $dropped_constraints = array();
- if (!empty($changes['change']) && is_array($changes['change'])) {
- $dropped = $this->_dropConflictingIndices($name, array_keys($changes['change']));
- if (MDB2::isError($dropped)) {
- $db->setOption('idxname_format', $idxname_format);
- return $dropped;
- }
- $dropped_indices = array_merge($dropped_indices, $dropped);
- $dropped = $this->_dropConflictingConstraints($name, array_keys($changes['change']));
- if (MDB2::isError($dropped)) {
- $db->setOption('idxname_format', $idxname_format);
- return $dropped;
- }
- $dropped_constraints = array_merge($dropped_constraints, $dropped);
- foreach ($changes['change'] as $field_name => $field) {
-
- $query = 'ALTER COLUMN ';
-
- if (array_key_exists('default', $field['definition'])) {
- unset($field['definition']['default']);
- }
- $query .= $db->getDeclaration($field['definition']['type'], $field_name, $field['definition']);
- $result = $db->exec("ALTER TABLE $name_quoted $query");
- if (MDB2::isError($result)) {
- $db->setOption('idxname_format', $idxname_format);
- return $result;
- }
- }
- }
-
- foreach ($dropped_indices as $index_name => $index) {
- $result = $this->createIndex($name, $index_name, $index);
- if (MDB2::isError($result)) {
- $db->setOption('idxname_format', $idxname_format);
- return $result;
- }
- }
- foreach ($dropped_constraints as $constraint_name => $constraint) {
- $result = $this->createConstraint($name, $constraint_name, $constraint);
- if (MDB2::isError($result)) {
- $db->setOption('idxname_format', $idxname_format);
- return $result;
- }
- }
- $db->setOption('idxname_format', $idxname_format);
- if (!empty($changes['name'])) {
- $new_name = $db->quoteIdentifier($changes['name'], true);
- $result = $db->exec("sp_rename '$name_quoted', '$new_name'");
- if (MDB2::isError($result)) {
- return $result;
- }
- }
- return MDB2_OK;
- }
-
-
-
- function _dropConflictingIndices($table, $fields)
- {
- $db = $this->getDBInstance();
- if (MDB2::isError($db)) {
- return $db;
- }
- $dropped = array();
- $index_names = $this->listTableIndexes($table);
- if (MDB2::isError($index_names)) {
- return $index_names;
- }
- $db->loadModule('Reverse');
- $indexes = array();
- foreach ($index_names as $index_name) {
- $idx_def = $db->reverse->getTableIndexDefinition($table, $index_name);
- if (!MDB2::isError($idx_def)) {
- $indexes[$index_name] = $idx_def;
- }
- }
- foreach ($fields as $field_name) {
- foreach ($indexes as $index_name => $index) {
- if (!isset($dropped[$index_name]) && array_key_exists($field_name, $index['fields'])) {
- $dropped[$index_name] = $index;
- $result = $this->dropIndex($table, $index_name);
- if (MDB2::isError($result)) {
- return $result;
- }
- }
- }
- }
- return $dropped;
- }
-
-
-
- function _dropConflictingConstraints($table, $fields)
- {
- $db = $this->getDBInstance();
- if (MDB2::isError($db)) {
- return $db;
- }
- $dropped = array();
- $constraint_names = $this->listTableConstraints($table);
- if (MDB2::isError($constraint_names)) {
- return $constraint_names;
- }
- $db->loadModule('Reverse');
- $constraints = array();
- foreach ($constraint_names as $constraint_name) {
- $cons_def = $db->reverse->getTableConstraintDefinition($table, $constraint_name);
- if (!MDB2::isError($cons_def)) {
- $constraints[$constraint_name] = $cons_def;
- }
- }
- foreach ($fields as $field_name) {
- foreach ($constraints as $constraint_name => $constraint) {
- if (!isset($dropped[$constraint_name]) && array_key_exists($field_name, $constraint['fields'])) {
- $dropped[$constraint_name] = $constraint;
- $result = $this->dropConstraint($table, $constraint_name);
- if (MDB2::isError($result)) {
- return $result;
- }
- }
- }
-
- $default = $this->_getTableFieldDefaultConstraint($table, $field_name);
- if (!MDB2::isError($default) && !empty($default)) {
- $result = $this->dropConstraint($table, $default);
- if (MDB2::isError($result)) {
- return $result;
- }
- }
- }
- return $dropped;
- }
-
-
-
- function _getTableFieldDefaultConstraint($table, $field)
- {
- $db = $this->getDBInstance();
- if (MDB2::isError($db)) {
- return $db;
- }
- $table = $db->quoteIdentifier($table, true);
- $field = $db->quote($field, 'text');
- $query = "SELECT OBJECT_NAME(syscolumns.cdefault)
- FROM syscolumns
- WHERE syscolumns.id = object_id('$table')
- AND syscolumns.name = $field
- AND syscolumns.cdefault <> 0";
- return $db->queryOne($query);
- }
-
-
-
- function listTables()
- {
- $db = $this->getDBInstance();
- if (MDB2::isError($db)) {
- return $db;
- }
- $query = 'EXEC sp_tables @table_type = "\'TABLE\'"';
- $table_names = $db->queryCol($query, null, 2);
- if (MDB2::isError($table_names)) {
- return $table_names;
- }
- $result = array();
- foreach ($table_names as $table_name) {
- if (!$this->_fixSequenceName($table_name, true)) {
- $result[] = $table_name;
- }
- }
- if ($db->options['portability'] & MDB2_PORTABILITY_FIX_CASE) {
- $result = array_map(($db->options['field_case'] == CASE_LOWER ?
- 'strtolower' : 'strtoupper'), $result);
- }
- return $result;
- }
-
-
-
- function listTableFields($table)
- {
- $db = $this->getDBInstance();
- if (MDB2::isError($db)) {
- return $db;
- }
- $table = $db->quote($table, 'text');
- $columns = $db->queryCol("SELECT c.name
- FROM syscolumns c
- LEFT JOIN sysobjects o ON c.id = o.id
- WHERE o.name = $table");
- if (MDB2::isError($columns)) {
- return $columns;
- }
- if ($db->options['portability'] & MDB2_PORTABILITY_FIX_CASE) {
- $columns = array_map(($db->options['field_case'] == CASE_LOWER ? 'strtolower' : 'strtoupper'), $columns);
- }
- return $columns;
- }
-
-
-
- function listTableIndexes($table)
- {
- $db = $this->getDBInstance();
- if (MDB2::isError($db)) {
- return $db;
- }
- $key_name = 'INDEX_NAME';
- $pk_name = 'PK_NAME';
- if ($db->options['portability'] & MDB2_PORTABILITY_FIX_CASE) {
- if ($db->options['field_case'] == CASE_LOWER) {
- $key_name = strtolower($key_name);
- $pk_name = strtolower($pk_name);
- } else {
- $key_name = strtoupper($key_name);
- $pk_name = strtoupper($pk_name);
- }
- }
- $table = $db->quote($table, 'text');
- $query = "EXEC sp_statistics @table_name=$table";
- $indexes = $db->queryCol($query, 'text', $key_name);
- if (MDB2::isError($indexes)) {
- return $indexes;
- }
- $query = "EXEC sp_pkeys @table_name=$table";
- $pk_all = $db->queryCol($query, 'text', $pk_name);
- $result = array();
- foreach ($indexes as $index) {
- if (!in_array($index, $pk_all) && ($index = $this->_fixIndexName($index))) {
- $result[$index] = true;
- }
- }
- if ($db->options['portability'] & MDB2_PORTABILITY_FIX_CASE) {
- $result = array_change_key_case($result, $db->options['field_case']);
- }
- return array_keys($result);
- }
-
-
-
- function listDatabases()
- {
- $db = $this->getDBInstance();
- if (MDB2::isError($db)) {
- return $db;
- }
- $result = $db->queryCol('SELECT name FROM sys.databases');
- if (MDB2::isError($result)) {
- return $result;
- }
- if ($db->options['portability'] & MDB2_PORTABILITY_FIX_CASE) {
- $result = array_map(($db->options['field_case'] == CASE_LOWER ? 'strtolower' : 'strtoupper'), $result);
- }
- return $result;
- }
-
-
-
- function listUsers()
- {
- $db = $this->getDBInstance();
- if (MDB2::isError($db)) {
- return $db;
- }
- $result = $db->queryCol('SELECT DISTINCT loginame FROM master..sysprocesses');
- if (MDB2::isError($result) || empty($result)) {
- return $result;
- }
- foreach (array_keys($result) as $k) {
- $result[$k] = trim($result[$k]);
- }
- return $result;
- }
-
-
-
- function listFunctions()
- {
- $db = $this->getDBInstance();
- if (MDB2::isError($db)) {
- return $db;
- }
- $query = "SELECT name
- FROM sysobjects
- WHERE objectproperty(id, N'IsMSShipped') = 0
- AND (objectproperty(id, N'IsTableFunction') = 1
- OR objectproperty(id, N'IsScalarFunction') = 1)";
-
- $result = $db->queryCol($query);
- if (MDB2::isError($result)) {
- return $result;
- }
- if ($db->options['portability'] & MDB2_PORTABILITY_FIX_CASE) {
- $result = array_map(($db->options['field_case'] == CASE_LOWER ? 'strtolower' : 'strtoupper'), $result);
- }
- return $result;
- }
-
-
-
- function listTableTriggers($table = null)
- {
- $db = $this->getDBInstance();
- if (MDB2::isError($db)) {
- return $db;
- }
- $table = $db->quote($table, 'text');
- $query = "SELECT o.name
- FROM sysobjects o
- WHERE xtype = 'TR'
- AND OBJECTPROPERTY(o.id, 'IsMSShipped') = 0";
- if (null !== $table) {
- $query .= " AND object_name(parent_obj) = $table";
- }
- $result = $db->queryCol($query);
- if (MDB2::isError($result)) {
- return $result;
- }
- if ($db->options['portability'] & MDB2_PORTABILITY_FIX_CASE &&
- $db->options['field_case'] == CASE_LOWER)
- {
- $result = array_map(($db->options['field_case'] == CASE_LOWER ?
- 'strtolower' : 'strtoupper'), $result);
- }
- return $result;
- }
-
-
-
- function listViews()
- {
- $db = $this->getDBInstance();
- if (MDB2::isError($db)) {
- return $db;
- }
- $query = "SELECT name
- FROM sysobjects
- WHERE xtype = 'V'";
-
- $result = $db->queryCol($query);
- if (MDB2::isError($result)) {
- return $result;
- }
- if ($db->options['portability'] & MDB2_PORTABILITY_FIX_CASE &&
- $db->options['field_case'] == CASE_LOWER)
- {
- $result = array_map(($db->options['field_case'] == CASE_LOWER ?
- 'strtolower' : 'strtoupper'), $result);
- }
- return $result;
- }
-
-
-
- function dropIndex($table, $name)
- {
- $db = $this->getDBInstance();
- if (MDB2::isError($db)) {
- return $db;
- }
- $table = $db->quoteIdentifier($table, true);
- $name = $db->quoteIdentifier($db->getIndexName($name), true);
- $result = $db->exec("DROP INDEX $table.$name");
- if (MDB2::isError($result)) {
- return $result;
- }
- return MDB2_OK;
- }
-
-
-
- function listTableConstraints($table)
- {
- $db = $this->getDBInstance();
- if (MDB2::isError($db)) {
- return $db;
- }
- $table = $db->quote($table, 'text');
- $query = "SELECT c.constraint_name
- FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS c
- WHERE c.constraint_catalog = DB_NAME()
- AND c.table_name = $table";
- $constraints = $db->queryCol($query);
- if (MDB2::isError($constraints)) {
- return $constraints;
- }
- $result = array();
- foreach ($constraints as $constraint) {
- $constraint = $this->_fixIndexName($constraint);
- if (!empty($constraint)) {
- $result[$constraint] = true;
- }
- }
- if ($db->options['portability'] & MDB2_PORTABILITY_FIX_CASE) {
- $result = array_change_key_case($result, $db->options['field_case']);
- }
- return array_keys($result);
- }
-
-
-
- function createSequence($seq_name, $start = 1)
- {
- $db = $this->getDBInstance();
- if (MDB2::isError($db)) {
- return $db;
- }
- $sequence_name = $db->quoteIdentifier($db->getSequenceName($seq_name), true);
- $seqcol_name = $db->quoteIdentifier($db->options['seqcol_name'], true);
- $query = "CREATE TABLE $sequence_name ($seqcol_name " .
- "INT PRIMARY KEY CLUSTERED IDENTITY($start,1) NOT NULL)";
- $res = $db->exec($query);
- if (MDB2::isError($res)) {
- return $res;
- }
- $query = "SET IDENTITY_INSERT $sequence_name ON ".
- "INSERT INTO $sequence_name ($seqcol_name) VALUES ($start)";
- $res = $db->exec($query);
- if (!MDB2::isError($res)) {
- return MDB2_OK;
- }
- $result = $db->exec("DROP TABLE $sequence_name");
- if (MDB2::isError($result)) {
- return $db->raiseError($result, null, null,
- 'could not drop inconsistent sequence table', __FUNCTION__);
- }
- return $db->raiseError($res, null, null,
- 'could not create sequence table', __FUNCTION__);
- }
-
-
-
- function dropSequence($seq_name)
- {
- $db = $this->getDBInstance();
- if (MDB2::isError($db)) {
- return $db;
- }
- $sequence_name = $db->quoteIdentifier($db->getSequenceName($seq_name), true);
- $result = $db->exec("DROP TABLE $sequence_name");
- if (MDB2::isError($result)) {
- return $result;
- }
- return MDB2_OK;
- }
-
-
-
- function listSequences()
- {
- $db = $this->getDBInstance();
- if (MDB2::isError($db)) {
- return $db;
- }
- $query = "SELECT name FROM sysobjects WHERE xtype = 'U'";
- $table_names = $db->queryCol($query);
- if (MDB2::isError($table_names)) {
- return $table_names;
- }
- $result = array();
- foreach ($table_names as $table_name) {
- if ($sqn = $this->_fixSequenceName($table_name, true)) {
- $result[] = $sqn;
- }
- }
- if ($db->options['portability'] & MDB2_PORTABILITY_FIX_CASE) {
- $result = array_map(($db->options['field_case'] == CASE_LOWER ?
- 'strtolower' : 'strtoupper'), $result);
- }
- return $result;
- }
-
- }
- ?>
|