Moodle  2.2.1
http://www.collinsharper.com
ADODB_DataDict Class Reference

Public Member Functions

 GetCommentSQL ($table, $col)
 in other words, we use a text area for editting.
 SetCommentSQL ($table, $col, $cmt)
 MetaTables ()
 MetaColumns ($tab, $upper=true, $schema=false)
 MetaPrimaryKeys ($tab, $owner=false, $intkey=false)
 MetaIndexes ($table, $primary=false, $owner=false)
 MetaType ($t, $len=-1, $fieldobj=false)
 NameQuote ($name=NULL, $allowBrackets=false)
 TableName ($name)
 ExecuteSQLArray ($sql, $continueOnError=true)
 ActualType ($meta)
 CreateDatabase ($dbname, $options=false)
 CreateIndexSQL ($idxname, $tabname, $flds, $idxoptions=false)
 DropIndexSQL ($idxname, $tabname=NULL)
 SetSchema ($schema)
 AddColumnSQL ($tabname, $flds)
 AlterColumnSQL ($tabname, $flds, $tableflds='', $tableoptions='')
 RenameColumnSQL ($tabname, $oldcolumn, $newcolumn, $flds='')
 DropColumnSQL ($tabname, $flds, $tableflds='', $tableoptions='')
 DropTableSQL ($tabname)
 RenameTableSQL ($tabname, $newname)
 CreateTableSQL ($tabname, $flds, $tableoptions=array())
 _GenFields ($flds, $widespacing=false)
 _GetSize ($ftype, $ty, $fsize, $fprec)
 _CreateSuffix ($fname, &$ftype, $fnotnull, $fdefault, $fautoinc, $fconstraint, $funsigned)
 _IndexSQL ($idxname, $tabname, $flds, $idxoptions)
 _DropAutoIncrement ($tabname)
 _TableSQL ($tabname, $lines, $pkey, $tableoptions)
 _Triggers ($tabname, $taboptions)
 _Options ($opts)
 _getSizePrec ($size)
 ChangeTableSQL ($tablename, $flds, $tableoptions=false, $dropOldFlds=false)

Data Fields

 $connection
 $debug = false
 $dropTable = 'DROP TABLE %s'
 $renameTable = 'RENAME TABLE %s TO %s'
 $dropIndex = 'DROP INDEX %s'
 $addCol = ' ADD'
 $alterCol = ' ALTER COLUMN'
 $dropCol = ' DROP COLUMN'
 $renameColumn = 'ALTER TABLE %s RENAME COLUMN %s TO %s'
 $nameRegex = '\w'
 $nameRegexBrackets = 'a-zA-Z0-9_\(\)'
 $schema = false
 $serverInfo = array()
 $autoIncrement = false
 $dataProvider
 $invalidResizeTypes4 = array('CLOB','BLOB','TEXT','DATE','TIME')
 $blobSize = 100

Detailed Description

Definition at line 164 of file adodb-datadict.inc.php.


Member Function Documentation

_CreateSuffix ( fname,
&$  ftype,
fnotnull,
fdefault,
fautoinc,
fconstraint,
funsigned 
)

Definition at line 819 of file adodb-datadict.inc.php.

Here is the caller graph for this function:

_DropAutoIncrement ( tabname)

Definition at line 857 of file adodb-datadict.inc.php.

Here is the caller graph for this function:

_GenFields ( flds,
widespacing = false 
)

Definition at line 595 of file adodb-datadict.inc.php.

Here is the call graph for this function:

Here is the caller graph for this function:

_GetSize ( ftype,
ty,
fsize,
fprec 
)

GENERATE THE SIZE PART OF THE DATATYPE $ftype is the actual type $ty is the type defined originally in the DDL

Definition at line 807 of file adodb-datadict.inc.php.

Here is the caller graph for this function:

_getSizePrec ( size)

Definition at line 919 of file adodb-datadict.inc.php.

Here is the caller graph for this function:

_IndexSQL ( idxname,
tabname,
flds,
idxoptions 
)

Definition at line 828 of file adodb-datadict.inc.php.

Here is the caller graph for this function:

_Options ( opts)

Sanitize options, so that array elements with no keys are promoted to keys

Definition at line 907 of file adodb-datadict.inc.php.

Here is the caller graph for this function:

_TableSQL ( tabname,
lines,
pkey,
tableoptions 
)

Definition at line 862 of file adodb-datadict.inc.php.

Here is the call graph for this function:

Here is the caller graph for this function:

_Triggers ( tabname,
taboptions 
)

GENERATE TRIGGERS IF NEEDED used when table has auto-incrementing field that is emulated using triggers

Definition at line 899 of file adodb-datadict.inc.php.

Here is the caller graph for this function:

ActualType ( meta)

Returns the actual type given a character code.

C: varchar X: CLOB (character large object) or largest varchar size if CLOB is not supported C2: Multibyte varchar X2: Multibyte CLOB

B: BLOB (binary large object)

D: Date T: Date-time L: Integer field suitable for storing booleans (0 or 1) I: Integer F: Floating point number N: Numeric or decimal number

Definition at line 407 of file adodb-datadict.inc.php.

Here is the caller graph for this function:

AddColumnSQL ( tabname,
flds 
)

Definition at line 452 of file adodb-datadict.inc.php.

Here is the call graph for this function:

AlterColumnSQL ( tabname,
flds,
tableflds = '',
tableoptions = '' 
)

Change the definition of one column

As some DBM's can't do that on there own, you need to supply the complete defintion of the new table, to allow, recreating the table and copying the content over to the new table

Parameters:
string$tabnametable-name
string$fldscolumn-name and type for the changed column
string$tableflds,=''complete defintion of the new table, eg. for postgres, default ''
array/string$tableoptions='' options for the new table see CreateTableSQL, default ''
Returns:
array with SQL strings

Definition at line 483 of file adodb-datadict.inc.php.

Here is the call graph for this function:

ChangeTableSQL ( tablename,
flds,
tableoptions = false,
dropOldFlds = false 
)

"Florian Buzin [ easywe ]" <florian.buzin::easywe.de>

This function changes/adds new fields to your table. You don't have to know if the col is new or not. It will check on its own.

Definition at line 939 of file adodb-datadict.inc.php.

Here is the call graph for this function:

CreateDatabase ( dbname,
options = false 
)

Definition at line 412 of file adodb-datadict.inc.php.

Here is the call graph for this function:

CreateIndexSQL ( idxname,
tabname,
flds,
idxoptions = false 
)

Definition at line 428 of file adodb-datadict.inc.php.

Here is the call graph for this function:

CreateTableSQL ( tabname,
flds,
tableoptions = array() 
)

Generate the SQL to create table. Returns an array of sql strings.

Definition at line 563 of file adodb-datadict.inc.php.

Here is the call graph for this function:

Here is the caller graph for this function:

DropColumnSQL ( tabname,
flds,
tableflds = '',
tableoptions = '' 
)

Drop one column

Some DBM's can't do that on there own, you need to supply the complete defintion of the new table, to allow, recreating the table and copying the content over to the new table

Parameters:
string$tabnametable-name
string$fldscolumn-name and type for the changed column
string$tableflds,=''complete defintion of the new table, eg. for postgres, default ''
array/string$tableoptions='' options for the new table see CreateTableSQL, default ''
Returns:
array with SQL strings

Definition at line 538 of file adodb-datadict.inc.php.

Here is the call graph for this function:

DropIndexSQL ( idxname,
tabname = NULL 
)

Definition at line 442 of file adodb-datadict.inc.php.

Here is the call graph for this function:

DropTableSQL ( tabname)

Definition at line 550 of file adodb-datadict.inc.php.

Here is the call graph for this function:

ExecuteSQLArray ( sql,
continueOnError = true 
)

Definition at line 370 of file adodb-datadict.inc.php.

GetCommentSQL ( table,
col 
)

in other words, we use a text area for editting.

any varchar/char field this size or greater is treated as a blob

Definition at line 184 of file adodb-datadict.inc.php.

MetaColumns ( tab,
upper = true,
schema = false 
)

Definition at line 200 of file adodb-datadict.inc.php.

Here is the call graph for this function:

Here is the caller graph for this function:

MetaIndexes ( table,
primary = false,
owner = false 
)

Definition at line 212 of file adodb-datadict.inc.php.

Here is the call graph for this function:

MetaPrimaryKeys ( tab,
owner = false,
intkey = false 
)

Definition at line 206 of file adodb-datadict.inc.php.

Here is the call graph for this function:

Definition at line 194 of file adodb-datadict.inc.php.

MetaType ( t,
len = -1,
fieldobj = false 
)

Definition at line 218 of file adodb-datadict.inc.php.

Here is the caller graph for this function:

NameQuote ( name = NULL,
allowBrackets = false 
)

Definition at line 332 of file adodb-datadict.inc.php.

Here is the caller graph for this function:

RenameColumnSQL ( tabname,
oldcolumn,
newcolumn,
flds = '' 
)

Rename one column

Some DBM's can only do this together with changeing the type of the column (even if that stays the same, eg. mysql)

Parameters:
string$tabnametable-name
string$oldcolumncolumn-name to be renamed
string$newcolumnnew column-name
string$flds,=''complete column-defintion-string like for AddColumnSQL, only used by mysql atm., default=''
Returns:
array with SQL strings

Definition at line 514 of file adodb-datadict.inc.php.

Here is the call graph for this function:

RenameTableSQL ( tabname,
newname 
)

Definition at line 555 of file adodb-datadict.inc.php.

Here is the call graph for this function:

SetCommentSQL ( table,
col,
cmt 
)

Definition at line 189 of file adodb-datadict.inc.php.

SetSchema ( schema)

Definition at line 447 of file adodb-datadict.inc.php.

TableName ( name)

Definition at line 361 of file adodb-datadict.inc.php.

Here is the call graph for this function:

Here is the caller graph for this function:


Field Documentation

$addCol = ' ADD'

Definition at line 170 of file adodb-datadict.inc.php.

$alterCol = ' ALTER COLUMN'

Definition at line 171 of file adodb-datadict.inc.php.

$autoIncrement = false

Definition at line 178 of file adodb-datadict.inc.php.

$blobSize = 100

Definition at line 181 of file adodb-datadict.inc.php.

$connection

Definition at line 165 of file adodb-datadict.inc.php.

$dataProvider

Definition at line 179 of file adodb-datadict.inc.php.

$debug = false

Definition at line 166 of file adodb-datadict.inc.php.

$dropCol = ' DROP COLUMN'

Definition at line 172 of file adodb-datadict.inc.php.

$dropIndex = 'DROP INDEX %s'

Definition at line 169 of file adodb-datadict.inc.php.

$dropTable = 'DROP TABLE %s'

Definition at line 167 of file adodb-datadict.inc.php.

$invalidResizeTypes4 = array('CLOB','BLOB','TEXT','DATE','TIME')

Definition at line 180 of file adodb-datadict.inc.php.

$nameRegex = '\w'

Definition at line 174 of file adodb-datadict.inc.php.

$nameRegexBrackets = 'a-zA-Z0-9_\(\)'

Definition at line 175 of file adodb-datadict.inc.php.

$renameColumn = 'ALTER TABLE %s RENAME COLUMN %s TO %s'

Definition at line 173 of file adodb-datadict.inc.php.

$renameTable = 'RENAME TABLE %s TO %s'

Definition at line 168 of file adodb-datadict.inc.php.

$schema = false

Definition at line 176 of file adodb-datadict.inc.php.

$serverInfo = array()

Definition at line 177 of file adodb-datadict.inc.php.


The documentation for this class was generated from the following file:
 All Data Structures Namespaces Files Functions Variables Enumerations