MDB2
[ class tree: MDB2 ] [ index: MDB2 ] [ all elements ]

Class: MDB2_Driver_Manager_pgsql

Source Location: /MDB2-2.0.0beta4/MDB2/Driver/Manager/pgsql.php

Class Overview

MDB2_Driver_Manager_common
   |
   --MDB2_Driver_Manager_pgsql

MDB2 MySQL driver for the management modules


Author(s):

Methods


Inherited Variables

Inherited Methods


Class Details

[line 56]
MDB2 MySQL driver for the management modules


[ Top ]


Method Detail

alterTable   [line 186]

mixed alterTable( string $name, &$changes, boolean $check, array $changes)

alter an existing table
  • Return: MDB2_OK on success, a MDB2 error on failure
  • Access: public

Parameters:

string   $name   —  name of the table that is intended to be changed.
array   $changes   — 

associative array that contains the details of each type of change that is intended to be performed. The types of changes that are currently supported are defined as follows:

name

New name for the table.

added_fields

Associative array with the names of fields to be added as indexes of the array. The value of each entry of the array should be set to another associative array with the properties of the fields to be added. The properties of the fields should be the same as defined by the Metabase parser.

Additionally, there should be an entry named Declaration that is expected to contain the portion of the field declaration already in DBMS specific SQL code as it is used in the CREATE TABLE statement.

removed_fields

Associative array with the names of fields to be removed as indexes of the array. Currently the values assigned to each entry are ignored. An empty array should be used for future compatibility.

renamed_fields

Associative array with the names of fields to be renamed as indexes of the array. The value of each entry of the array should be set to another associative array with the entry named name with the new field name and the entry named Declaration that is expected to contain the portion of the field declaration already in DBMS specific SQL code as it is used in the CREATE TABLE statement.

changed_fields

Associative array with the names of the fields to be changed as indexes of the array. Keep in mind that if it is intended to change either the name of a field and any other properties, the changed_fields array entries should have the new names of the fields as array indexes.

The value of each entry of the array should be set to another associative array with the properties of the fields to that are meant to be changed as array entries. These entries should be assigned to the new values of the respective properties. The properties of the fields should be the same as defined by the Metabase parser.

If the default property is meant to be added, removed or changed, there should also be an entry with index ChangedDefault assigned to 1. Similarly, if the notnull constraint is to be added or removed, there should also be an entry with index ChangedNotNull assigned to 1.

Additionally, there should be an entry named Declaration that is expected to contain the portion of the field changed declaration already in DBMS specific SQL code as it is used in the CREATE TABLE statement. Example array( 'name' => 'userlist', 'added_fields' => array( 'quota' => array( 'type' => 'integer', 'unsigned' => 1 'declaration' => 'quota INT' ) ), 'removed_fields' => array( 'file_limit' => array(), 'time_limit' => array() ), 'changed_fields' => array( 'gender' => array( 'default' => 'M', 'change_default' => 1, 'declaration' => "gender CHAR(1) DEFAULT 'M'" ) ), 'renamed_fields' => array( 'sex' => array( 'name' => 'gender', 'declaration' => "gender CHAR(1) DEFAULT 'M'" ) ) )

boolean   $check   —  indicates whether the function should just check if the DBMS driver can perform the requested table alterations if the value is true or actually perform them otherwise.
   &$changes   — 

[ Top ]

createDatabase   [line 67]

mixed createDatabase( string $name)

create a new database
  • Return: MDB2_OK on success, a MDB2 error on failure
  • Access: public

Parameters:

string   $name   —  name of the database that should be created

[ Top ]

createSequence   [line 406]

mixed createSequence( string $seq_name, [string $start = 1])

create sequence
  • Return: MDB2_OK on success, a MDB2 error on failure
  • Access: public

Parameters:

string   $seq_name   —  name of the sequence to be created
string   $start   —  start value of the sequence; default is 1

[ Top ]

dropDatabase   [line 83]

mixed dropDatabase( string $name)

drop an existing database
  • Return: MDB2_OK on success, a MDB2 error on failure
  • Access: public

Parameters:

string   $name   —  name of the database that should be dropped

[ Top ]

dropSequence   [line 424]

mixed dropSequence( string $seq_name)

drop existing sequence
  • Return: MDB2_OK on success, a MDB2 error on failure
  • Access: public

Parameters:

string   $seq_name   —  name of the sequence to be dropped

[ Top ]

listDatabases   [line 237]

mixed listDatabases( )

list all databases
  • Return: data array on success, a MDB2 error on failure
  • Access: public

[ Top ]

listFunctions   [line 297]

mixed listFunctions( )

list all functions in the current database
  • Return: data array on success, a MDB2 error on failure
  • Access: public

[ Top ]

listSequences   [line 440]

mixed listSequences( )

list all sequences in the current database
  • Return: data array on success, a MDB2 error on failure
  • Access: public

[ Top ]

listTableFields   [line 360]

mixed listTableFields( string $table)

list all fields in a tables in the current database
  • Return: data array on success, a MDB2 error on failure
  • Access: public

Parameters:

string   $table   —  name of table that should be used in method

[ Top ]

listTableIndexes   [line 385]

mixed listTableIndexes( string $table)

list all indexes in a table
  • Return: data array on success, a MDB2 error on failure
  • Access: public

Parameters:

string   $table   —  name of table that should be used in method

[ Top ]

listTables   [line 324]

mixed listTables( )

list all tables in the current database
  • Return: data array on success, a MDB2 error on failure
  • Access: public

[ Top ]

listUsers   [line 259]

mixed listUsers( )

list all users
  • Return: data array on success, a MDB2 error on failure
  • Access: public

[ Top ]

listViews   [line 281]

mixed listViews( )

list the views in the database
  • Return: MDB2_OK on success, a MDB2 error on failure
  • Access: public

[ Top ]


Documentation generated on Mon, 11 Mar 2019 14:20:24 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.