creole.metadata
[ class tree: creole.metadata ] [ index: creole.metadata ] [ all elements ]

Element index for package creole.metadata

[ a ] [ c ] [ d ] [ f ] [ g ] [ i ] [ n ] [ p ] [ s ] [ t ] [ _ ]

_

__construct
in file IndexInfo.php, method IndexInfo::__construct()
__construct
in file PrimaryKeyInfo.php, method PrimaryKeyInfo::__construct()
__construct
in file TableInfo.php, method TableInfo::__construct()
__construct
in file ColumnInfo.php, method ColumnInfo::__construct()
    Construct a new ColumnInfo object.
__construct
in file ForeignKeyInfo.php, method ForeignKeyInfo::__construct()
__construct
in file DatabaseInfo.php, method DatabaseInfo::__construct()
__sleep
in file TableInfo.php, method TableInfo::__sleep()
    This "magic" method is invoked upon serialize().
__sleep
in file DatabaseInfo.php, method DatabaseInfo::__sleep()
    This method is invoked upon serialize().
__sleep
in file ColumnInfo.php, method ColumnInfo::__sleep()
    This "magic" method is invoked upon serialize().
__wakeup
in file TableInfo.php, method TableInfo::__wakeup()
    This "magic" method is invoked upon unserialize().
__wakeup
in file DatabaseInfo.php, method DatabaseInfo::__wakeup()
    This method is invoked upon unserialize().
top

a

addColumn
in file TableInfo.php, method TableInfo::addColumn()
    Adds a column to this table.
addColumn
in file PrimaryKeyInfo.php, method PrimaryKeyInfo::addColumn()
addColumn
in file IndexInfo.php, method IndexInfo::addColumn()
addReference
in file ForeignKeyInfo.php, method ForeignKeyInfo::addReference()
    Adds a foreign-local mapping.
addTable
in file DatabaseInfo.php, method DatabaseInfo::addTable()
    Adds a table to this db.
top

c

$colsLoaded
in file TableInfo.php, variable TableInfo::$colsLoaded
$columns
in file TableInfo.php, variable TableInfo::$columns
$conn
in file TableInfo.php, variable TableInfo::$conn
    Database Connection.
$conn
in file DatabaseInfo.php, variable DatabaseInfo::$conn
    The database Connection.
ColumnInfo
in file ColumnInfo.php, class ColumnInfo
    Represents a Column.
columnsLoaded
in file TableInfo.php, method TableInfo::columnsLoaded()
    Have columns been loaded?
ColumnInfo.php
procedural page ColumnInfo.php
top

d

$database
in file TableInfo.php, variable TableInfo::$database
    The parent DatabaseInfo object.
$dblink
in file TableInfo.php, variable TableInfo::$dblink
    Shortcut to db resource link id (needed by drivers for queries).
$dblink
in file DatabaseInfo.php, variable DatabaseInfo::$dblink
    Database link
$dbname
in file TableInfo.php, variable TableInfo::$dbname
    Shortcut to db name (needed by many drivers for queries).
$dbname
in file DatabaseInfo.php, variable DatabaseInfo::$dbname
    Database name.
$defaultValue
in file ColumnInfo.php, variable ColumnInfo::$defaultValue
    Default value
DatabaseInfo.php
procedural page DatabaseInfo.php
DatabaseInfo
in file DatabaseInfo.php, class DatabaseInfo
    "Info" metadata class for a database.
top

f

$fksLoaded
in file TableInfo.php, variable TableInfo::$fksLoaded
$foreignKeys
in file TableInfo.php, variable TableInfo::$foreignKeys
ForeignKeyInfo.php
procedural page ForeignKeyInfo.php
ForeignKeyInfo
in file ForeignKeyInfo.php, class ForeignKeyInfo
    Represents a foreign key.
foreignKeysLoaded
in file TableInfo.php, method TableInfo::foreignKeysLoaded()
    Have foreign keys been loaded?
top

g

getColumn
in file TableInfo.php, method TableInfo::getColumn()
    Get the ColumnInfo object for specified column.
getColumns
in file PrimaryKeyInfo.php, method PrimaryKeyInfo::getColumns()
getColumns
in file IndexInfo.php, method IndexInfo::getColumns()
getColumns
in file TableInfo.php, method TableInfo::getColumns()
    Get array of columns for this table.
getConnection
in file DatabaseInfo.php, method DatabaseInfo::getConnection()
    Returns Connection being used.
getDatabase
in file TableInfo.php, method TableInfo::getDatabase()
    Get the parent DatabaseInfo object.
getDefaultValue
in file ColumnInfo.php, method ColumnInfo::getDefaultValue()
    Get the default value.
getForeignKey
in file TableInfo.php, method TableInfo::getForeignKey()
    Get specified fk for this table.
getForeignKeys
in file TableInfo.php, method TableInfo::getForeignKeys()
    Get all foreign keys.
getIndex
in file TableInfo.php, method TableInfo::getIndex()
    Gets the IndexInfo object for a specified index.
getIndexes
in file TableInfo.php, method TableInfo::getIndexes()
    Get array of IndexInfo objects for this table.
getIndices
in file TableInfo.php, method TableInfo::getIndices()
    Alias for getIndexes() method.
getName
in file PrimaryKeyInfo.php, method PrimaryKeyInfo::getName()
    Get foreign key name.
getName
in file ColumnInfo.php, method ColumnInfo::getName()
    Get column name.
getName
in file IndexInfo.php, method IndexInfo::getName()
getName
in file TableInfo.php, method TableInfo::getName()
    Get table name.
getName
in file ForeignKeyInfo.php, method ForeignKeyInfo::getName()
    Get foreign key name.
getName
in file DatabaseInfo.php, method DatabaseInfo::getName()
    Get name of database.
getNativeType
in file ColumnInfo.php, method ColumnInfo::getNativeType()
    Gets the native type name.
getPrimaryKey
in file TableInfo.php, method TableInfo::getPrimaryKey()
    Get parimary key in this table.
getReferences
in file ForeignKeyInfo.php, method ForeignKeyInfo::getReferences()
    Gets the local-foreign column mapping.
getScale
in file ColumnInfo.php, method ColumnInfo::getScale()
    Get column scale.
getSequences
in file DatabaseInfo.php, method DatabaseInfo::getSequences()
    Gets array of ? objects.
getSize
in file ColumnInfo.php, method ColumnInfo::getSize()
    Get column size.
getTable
in file ColumnInfo.php, method ColumnInfo::getTable()
    Get parent table.
getTable
in file DatabaseInfo.php, method DatabaseInfo::getTable()
    Get the TableInfo object for specified table name.
getTables
in file DatabaseInfo.php, method DatabaseInfo::getTables()
    Gets array of TableInfo objects.
getType
in file ColumnInfo.php, method ColumnInfo::getType()
    Get column type.
top

i

$indexes
in file TableInfo.php, variable TableInfo::$indexes
$indexesLoaded
in file TableInfo.php, variable TableInfo::$indexesLoaded
$isNullable
in file ColumnInfo.php, variable ColumnInfo::$isNullable
    Is nullable?
IndexInfo.php
procedural page IndexInfo.php
indexesLoaded
in file TableInfo.php, method TableInfo::indexesLoaded()
    Has index information been loaded?
IndexInfo
in file IndexInfo.php, class IndexInfo
    Represents an index.
initColumns
in file TableInfo.php, method TableInfo::initColumns()
    Loads the columns.
initForeignKeys
in file TableInfo.php, method TableInfo::initForeignKeys()
    Loads the foreign keys for this table.
initIndexes
in file TableInfo.php, method TableInfo::initIndexes()
    Loads the indexes information for this table.
initPrimaryKey
in file TableInfo.php, method TableInfo::initPrimaryKey()
    Loads the primary key information for this table.
initSequences
in file DatabaseInfo.php, method DatabaseInfo::initSequences()
initTables
in file DatabaseInfo.php, method DatabaseInfo::initTables()
isNullable
in file ColumnInfo.php, method ColumnInfo::isNullable()
    Is column nullable?
isSequence
in file DatabaseInfo.php, method DatabaseInfo::isSequence()
top

n

$name
in file ColumnInfo.php, variable ColumnInfo::$name
    Column name
$name
in file TableInfo.php, variable TableInfo::$name
$nativeType
in file ColumnInfo.php, variable ColumnInfo::$nativeType
    Column native type
top

p

$pkLoaded
in file TableInfo.php, variable TableInfo::$pkLoaded
$primaryKey
in file TableInfo.php, variable TableInfo::$primaryKey
PrimaryKeyInfo.php
procedural page PrimaryKeyInfo.php
PrimaryKeyInfo
in file PrimaryKeyInfo.php, class PrimaryKeyInfo
    Represents a PrimaryKey
primaryKeyLoaded
in file TableInfo.php, method TableInfo::primaryKeyLoaded()
    Has primary key info been loaded?
top

s

$scale
in file ColumnInfo.php, variable ColumnInfo::$scale
    Column scale (number of digits after decimal )
$seqsLoaded
in file DatabaseInfo.php, variable DatabaseInfo::$seqsLoaded
    have sequences been loaded
$sequences
in file DatabaseInfo.php, variable DatabaseInfo::$sequences
$size
in file ColumnInfo.php, variable ColumnInfo::$size
    Column length
top

t

$table
in file ColumnInfo.php, variable ColumnInfo::$table
    Table
$tables
in file DatabaseInfo.php, variable DatabaseInfo::$tables
$tablesLoaded
in file DatabaseInfo.php, variable DatabaseInfo::$tablesLoaded
    have tables been loaded
$type
in file ColumnInfo.php, variable ColumnInfo::$type
    Column Creole type.
TableInfo.php
procedural page TableInfo.php
TableInfo
in file TableInfo.php, class TableInfo
    Represents a table.
toString
in file TableInfo.php, method TableInfo::toString()
toString
in file ForeignKeyInfo.php, method ForeignKeyInfo::toString()
toString
in file ColumnInfo.php, method ColumnInfo::toString()
toString
in file IndexInfo.php, method IndexInfo::toString()
toString
in file PrimaryKeyInfo.php, method PrimaryKeyInfo::toString()
top

Documentation generated on Mon, 23 Aug 2004 21:50:56 -0400 by phpDocumentor 1.3.0RC3