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

Element index for package Koowa_Database

[ a ] [ c ] [ d ] [ e ] [ f ] [ g ] [ h ] [ i ] [ j ] [ k ] [ l ] [ m ] [ n ] [ o ] [ p ] [ q ] [ r ] [ s ] [ t ] [ u ] [ w ] [ _ ]

_

$_affected_rows
in file abstract.php, variable KDatabaseAdapterAbstract::$_affected_rows
    The affected row count
$_connected
in file abstract.php, variable KDatabaseAdapterAbstract::$_connected
    Active state of the connection
$_connection
in file abstract.php, variable KDatabaseAdapterAbstract::$_connection
    The database connection resource
$_database
in file mysqli.php, variable KDatabaseAdapterMysqli::$_database
    The database name of the active connection
$_insert_id
in file abstract.php, variable KDatabaseAdapterAbstract::$_insert_id
    Last auto-generated insert_id
$_name_quote
in file mysqli.php, variable KDatabaseAdapterMysqli::$_name_quote
    Quote for named objects
$_name_quote
in file abstract.php, variable KDatabaseAdapterAbstract::$_name_quote
    Quote for named objects
$_options
in file abstract.php, variable KDatabaseAdapterAbstract::$_options
    The connection options
$_table_needle
in file abstract.php, variable KDatabaseAdapterAbstract::$_table_needle
    The table needle
$_table_prefix
in file abstract.php, variable KDatabaseAdapterAbstract::$_table_prefix
    The table prefix
$_table_schema
in file abstract.php, variable KDatabaseAdapterAbstract::$_table_schema
    Schema cache
$_typemap
in file mysqli.php, variable KDatabaseAdapterMysqli::$_typemap
    Map of native MySQL types to generic types used when reading table column information.
_fetchArray
in file mysqli.php, method KDatabaseAdapterMysqli::_fetchArray()
    Fetch the first row of a result set as an associative array
_fetchArray
in file abstract.php, method KDatabaseAdapterAbstract::_fetchArray()
    Fetch the first row of a result set as an associative array
_fetchArrayList
in file mysqli.php, method KDatabaseAdapterMysqli::_fetchArrayList()
    Fetch all result rows of a result set as an array of associative arrays
_fetchArrayList
in file abstract.php, method KDatabaseAdapterAbstract::_fetchArrayList()
    Fetch all result rows of a result set as an array of associative arrays
_fetchField
in file abstract.php, method KDatabaseAdapterAbstract::_fetchField()
    Fetch the first field of the first row
_fetchField
in file mysqli.php, method KDatabaseAdapterMysqli::_fetchField()
    Fetch the first field of the first row
_fetchFieldList
in file mysqli.php, method KDatabaseAdapterMysqli::_fetchFieldList()
    Fetch an array of single field results
_fetchFieldList
in file abstract.php, method KDatabaseAdapterAbstract::_fetchFieldList()
    Fetch an array of single field results
_fetchObject
in file mysqli.php, method KDatabaseAdapterMysqli::_fetchObject()
    Fetch the first row of a result set as an object
_fetchObject
in file abstract.php, method KDatabaseAdapterAbstract::_fetchObject()
    Fetch the first row of a result set as an object
_fetchObjectList
in file abstract.php, method KDatabaseAdapterAbstract::_fetchObjectList()
    Fetch all rows of a result set as an array of objects
_fetchObjectList
in file mysqli.php, method KDatabaseAdapterMysqli::_fetchObjectList()
    Fetch all rows of a result set as an array of objects
_fetchTableColumns
in file mysqli.php, method KDatabaseAdapterMysqli::_fetchTableColumns()
    Retrieves the column schema information about the given table
_fetchTableIndexes
in file mysqli.php, method KDatabaseAdapterMysqli::_fetchTableIndexes()
    Retrieves the index information about the given table
_fetchTableInfo
in file mysqli.php, method KDatabaseAdapterMysqli::_fetchTableInfo()
    Retrieves the table schema information about the given tables
_initialize
in file abstract.php, method KDatabaseAdapterAbstract::_initialize()
    Initializes the options for the object
_initialize
in file mysqli.php, method KDatabaseAdapterMysqli::_initialize()
    Initializes the options for the object
_parseColumnInfo
in file mysqli.php, method KDatabaseAdapterMysqli::_parseColumnInfo()
    Parse the raw column schema information
_parseColumnInfo
in file abstract.php, method KDatabaseAdapterAbstract::_parseColumnInfo()
    Parse the raw column schema information
_parseColumnType
in file mysqli.php, method KDatabaseAdapterMysqli::_parseColumnType()
    Given a raw column specification, parse into datatype, length, and decimal scope.
_parseColumnType
in file abstract.php, method KDatabaseAdapterAbstract::_parseColumnType()
    Given a raw column specification, parse into datatype, size, and decimal scope.
_parseTableInfo
in file mysqli.php, method KDatabaseAdapterMysqli::_parseTableInfo()
    Parse the raw table schema information
_parseTableInfo
in file abstract.php, method KDatabaseAdapterAbstract::_parseTableInfo()
    Parse the raw table schema information
_quoteName
in file abstract.php, method KDatabaseAdapterAbstract::_quoteName()
    Quotes an identifier name (table, index, etc). Ignores empty values.
_quoteValue
in file abstract.php, method KDatabaseAdapterAbstract::_quoteValue()
    Safely quotes a value for an SQL statement.
_quoteValue
in file mysqli.php, method KDatabaseAdapterMysqli::_quoteValue()
    Safely quotes a value for an SQL statement.
__construct
in file abstract.php, method KDatabaseAdapterAbstract::__construct()
    Constructor.
__destruct
in file abstract.php, method KDatabaseAdapterAbstract::__destruct()
    Destructor
$_auto_generate
in file identifiable.php, variable KDatabaseBehaviorIdentifiable::$_auto_generate
    Set to true if uuid should be autogenerated on select if it doesn't exist.
$_columns
in file sluggable.php, variable KDatabaseBehaviorSluggable::$_columns
    The column name from where to generate the slug, or a set of column names to concatenate for generating the slug. Default is 'title'.
$_length
in file sluggable.php, variable KDatabaseBehaviorSluggable::$_length
    Maximum length the generated slug can have. If this is null the length of the slug column will be used. Default is NULL.
$_lifetime
in file lockable.php, variable KDatabaseBehaviorLockable::$_lifetime
    The lock lifetime
$_separator
in file sluggable.php, variable KDatabaseBehaviorSluggable::$_separator
    Separator character / string to use for replacing non alphabetic characters in generated slug. Default is '-'.
$_unique
in file sluggable.php, variable KDatabaseBehaviorSluggable::$_unique
    Set to true if slugs should be unique. If false and the slug column has a unique index set this will result in an error being throw that needs to be recovered. Default is NULL.
$_updatable
in file sluggable.php, variable KDatabaseBehaviorSluggable::$_updatable
    Set to true if slugs should be re-generated when updating an existing row. Default is true.
_afterTableDelete
in file orderable.php, method KDatabaseBehaviorOrderable::_afterTableDelete()
    Clean up the ordering after an item was deleted
_afterTableInsert
in file sluggable.php, method KDatabaseBehaviorSluggable::_afterTableInsert()
    Insert a slug
_afterTableSelect
in file identifiable.php, method KDatabaseBehaviorIdentifiable::_afterTableSelect()
    Auto generated the uuid
_beforeTableDelete
in file lockable.php, method KDatabaseBehaviorLockable::_beforeTableDelete()
    Checks if a row can be deleted
_beforeTableInsert
in file creatable.php, method KDatabaseBehaviorCreatable::_beforeTableInsert()
    Set created information
_beforeTableInsert
in file orderable.php, method KDatabaseBehaviorOrderable::_beforeTableInsert()
    Saves the row to the database.
_beforeTableInsert
in file identifiable.php, method KDatabaseBehaviorIdentifiable::_beforeTableInsert()
    Set uuid information
_beforeTableUpdate
in file lockable.php, method KDatabaseBehaviorLockable::_beforeTableUpdate()
    Checks if a row can be updated
_beforeTableUpdate
in file sluggable.php, method KDatabaseBehaviorSluggable::_beforeTableUpdate()
    Update the slug
_beforeTableUpdate
in file modifiable.php, method KDatabaseBehaviorModifiable::_beforeTableUpdate()
    Set modified information
_beforeTableUpdate
in file orderable.php, method KDatabaseBehaviorOrderable::_beforeTableUpdate()
    Changes the rows ordering if the virtual order field is set. Order is relative to the row's current position.
_buildQueryWhere
in file orderable.php, method KDatabaseBehaviorOrderable::_buildQueryWhere()
    Override to add a custom WHERE clause
_canonicalizeSlug
in file sluggable.php, method KDatabaseBehaviorSluggable::_canonicalizeSlug()
    Make sure the slug is unique
_createFilter
in file sluggable.php, method KDatabaseBehaviorSluggable::_createFilter()
    Create a sluggable filter
_createSlug
in file sluggable.php, method KDatabaseBehaviorSluggable::_createSlug()
    Create the slug
_initialize
in file sluggable.php, method KDatabaseBehaviorSluggable::_initialize()
    Initializes the options for the object
_initialize
in file identifiable.php, method KDatabaseBehaviorIdentifiable::_initialize()
    Initializes the options for the object
_initialize
in file lockable.php, method KDatabaseBehaviorLockable::_initialize()
    Initializes the options for the object
_initialize
in file modifiable.php, method KDatabaseBehaviorModifiable::_initialize()
    Initializes the options for the object
_uuid
in file identifiable.php, method KDatabaseBehaviorIdentifiable::_uuid()
    Generates a Universally Unique IDentifier, version 4.
__construct
in file sluggable.php, method KDatabaseBehaviorSluggable::__construct()
    Constructor.
__construct
in file identifiable.php, method KDatabaseBehaviorIdentifiable::__construct()
    Constructor.
$_adapter
in file query.php, variable KDatabaseQuery::$_adapter
    Database connector
$_prefix
in file query.php, variable KDatabaseQuery::$_prefix
    Table prefix
_initialize
in file query.php, method KDatabaseQuery::_initialize()
    Initializes the options for the object
__construct
in file query.php, method KDatabaseQuery::__construct()
    Object constructor
__toString
in file query.php, method KDatabaseQuery::__toString()
    Render the query to a string
$_identity_column
in file abstract.php, variable KDatabaseRowAbstract::$_identity_column
    Name of the identity column in the rowset
$_modified
in file abstract.php, variable KDatabaseRowAbstract::$_modified
    Tracks columns where data has been updated. Allows more specific save operations.
$_new
in file abstract.php, variable KDatabaseRowAbstract::$_new
    Tracks if row data is new
$_status
in file abstract.php, variable KDatabaseRowAbstract::$_status
    Tracks the status the row
$_status_message
in file abstract.php, variable KDatabaseRowAbstract::$_status_message
    The status message
$_table
in file table.php, variable KDatabaseRowTable::$_table
    Table object or identifier (com://APP/COMPONENT.table.NAME)
_initialize
in file table.php, method KDatabaseRowTable::_initialize()
    Initializes the options for the object
_initialize
in file abstract.php, method KDatabaseRowAbstract::_initialize()
    Initializes the options for the object
__call
in file table.php, method KDatabaseRowTable::__call()
    Search the mixin method map and call the method or trigger an error
__call
in file abstract.php, method KDatabaseRowAbstract::__call()
    Search the mixin method map and call the method or trigger an error
__construct
in file table.php, method KDatabaseRowTable::__construct()
    Object constructor
__construct
in file abstract.php, method KDatabaseRowAbstract::__construct()
    Constructor
__set
in file abstract.php, method KDatabaseRowAbstract::__set()
    Set row field value
__unset
in file table.php, method KDatabaseRowTable::__unset()
    Unset a row field
__unset
in file abstract.php, method KDatabaseRowAbstract::__unset()
    Unset a row field
$_identity_column
in file abstract.php, variable KDatabaseRowsetAbstract::$_identity_column
    Name of the identity column in the rowset
$_row_cloning
in file abstract.php, variable KDatabaseRowsetAbstract::$_row_cloning
    Clone row object when adding data
$_table
in file table.php, variable KDatabaseRowsetTable::$_table
    Table object or identifier (com://APP/COMPONENT.table.NAME)
_initialize
in file table.php, method KDatabaseRowsetTable::_initialize()
    Initializes the options for the object
_initialize
in file abstract.php, method KDatabaseRowsetAbstract::_initialize()
    Initializes the options for the object
__call
in file table.php, method KDatabaseRowsetTable::__call()
    Forward the call to each row
__call
in file abstract.php, method KDatabaseRowsetAbstract::__call()
    Search the mixin method map and call the method or forward the call to each row for processing.
__construct
in file abstract.php, method KDatabaseRowsetAbstract::__construct()
    Constructor
__construct
in file table.php, method KDatabaseRowsetTable::__construct()
    Constructor
$_filter
in file column.php, variable KDatabaseSchemaColumn::$_filter
    Filter object
__get
in file column.php, method KDatabaseSchemaColumn::__get()
    Implements access to $_filter by reference so that it appears to be a public $filter property.
__set
in file column.php, method KDatabaseSchemaColumn::__set()
    Implements the virtual $filter property.
$_base
in file abstract.php, variable KDatabaseTableAbstract::$_base
    Base name of the table in the db schema
$_column_map
in file abstract.php, variable KDatabaseTableAbstract::$_column_map
    Array of column mappings by column name
$_database
in file abstract.php, variable KDatabaseTableAbstract::$_database
    Database adapter
$_defaults
in file abstract.php, variable KDatabaseTableAbstract::$_defaults
    Default values for this table
$_identity_column
in file abstract.php, variable KDatabaseTableAbstract::$_identity_column
    Name of the identity column in the table
$_name
in file abstract.php, variable KDatabaseTableAbstract::$_name
    Real name of the table in the db schema
_initialize
in file abstract.php, method KDatabaseTableAbstract::_initialize()
    Initializes the options for the object
__call
in file abstract.php, method KDatabaseTableAbstract::__call()
    Search the behaviors to see if this table behaves as.
__construct
in file abstract.php, method KDatabaseTableAbstract::__construct()
    Object constructor
top

a

abstract.php
procedural page abstract.php
abstract.php
procedural page abstract.php
abstract.php
procedural page abstract.php
addData
in file table.php, method KDatabaseRowsetTable::addData()
    Add rows to the rowset
addData
in file interface.php, method KDatabaseRowsetInterface::addData()
    Add rows to the rowset
addData
in file abstract.php, method KDatabaseRowsetAbstract::addData()
    Add rows to the rowset
abstract.php
procedural page abstract.php
$autoinc
in file table.php, variable KDatabaseSchemaTable::$autoinc
    Table next auto increment value
$autoinc
in file column.php, variable KDatabaseSchemaColumn::$autoinc
    Is the column autoincremented
abstract.php
procedural page abstract.php
top

c

connect
in file mysqli.php, method KDatabaseAdapterMysqli::connect()
    Connect to the db
connect
in file interface.php, method KDatabaseAdapterInterface::connect()
    Connect to the db
creatable.php
procedural page creatable.php
$columns
in file query.php, variable KDatabaseQuery::$columns
    The columns
$count
in file query.php, variable KDatabaseQuery::$count
    Count operation
count
in file query.php, method KDatabaseQuery::count()
    Built a count query
count
in file table.php, method KDatabaseRowTable::count()
    Count the rows in the database based on the data in the row
count
in file interface.php, method KDatabaseRowInterface::count()
    Count the rows in the database based on the data in the row
count
in file abstract.php, method KDatabaseRowAbstract::count()
    Count the rows in the database based on the data in the row
$collation
in file table.php, variable KDatabaseSchemaTable::$collation
    The tables character set and collation
$columns
in file table.php, variable KDatabaseSchemaTable::$columns
    List of columns
column.php
procedural page column.php
count
in file abstract.php, method KDatabaseTableAbstract::count()
    Count table rows
top

d

database.php
procedural page database.php
delete
in file abstract.php, method KDatabaseAdapterAbstract::delete()
    Deletes rows from the table based on a WHERE clause.
delete
in file interface.php, method KDatabaseAdapterInterface::delete()
    Deletes rows from the table based on a WHERE clause.
disconnect
in file mysqli.php, method KDatabaseAdapterMysqli::disconnect()
    Disconnect from db
disconnect
in file interface.php, method KDatabaseAdapterInterface::disconnect()
    Disconnect from db
disconnect
in file abstract.php, method KDatabaseAdapterAbstract::disconnect()
    Disconnect from db
delete
in file abstract.php, method KDatabaseBehaviorAbstract::delete()
    Deletes the row form the database.
$distinct
in file query.php, variable KDatabaseQuery::$distinct
    Distinct operation
distinct
in file query.php, method KDatabaseQuery::distinct()
    Make the query distinct
delete
in file interface.php, method KDatabaseRowInterface::delete()
    Deletes the row form the database.
delete
in file abstract.php, method KDatabaseRowAbstract::delete()
    Deletes the row form the database.
delete
in file table.php, method KDatabaseRowTable::delete()
    Deletes the row form the database.
default.php
procedural page default.php
delete
in file abstract.php, method KDatabaseRowsetAbstract::delete()
    Deletes all rows in the rowset from the database
delete
in file interface.php, method KDatabaseRowsetInterface::delete()
    Deletes all rows in the rowset from the database
default.php
procedural page default.php
$default
in file column.php, variable KDatabaseSchemaColumn::$default
    Column default value
$description
in file table.php, variable KDatabaseSchemaTable::$description
    The tables description
delete
in file abstract.php, method KDatabaseTableAbstract::delete()
    Table delete method
default.php
procedural page default.php
top

e

exception.php
procedural page exception.php
execute
in file abstract.php, method KDatabaseAdapterAbstract::execute()
    Use and other queries that don't return rows
execute
in file interface.php, method KDatabaseAdapterInterface::execute()
    Use and other queries that don't return rows
exception.php
procedural page exception.php
execute
in file abstract.php, method KDatabaseBehaviorAbstract::execute()
    Command handler
exception.php
procedural page exception.php
exception.php
procedural page exception.php
extract
in file abstract.php, method KDatabaseRowsetAbstract::extract()
    Removes a row from the rowset
extract
in file interface.php, method KDatabaseRowsetInterface::extract()
    Removes a row from the rowset
exception.php
procedural page exception.php
$engine
in file table.php, variable KDatabaseSchemaTable::$engine
    The storage engine
exception.php
procedural page exception.php
exception.php
procedural page exception.php
top

f

FETCH_ARRAY
in file database.php, class constant KDatabase::FETCH_ARRAY
FETCH_ARRAY_LIST
in file database.php, class constant KDatabase::FETCH_ARRAY_LIST
FETCH_FIELD
in file database.php, class constant KDatabase::FETCH_FIELD
FETCH_FIELD_LIST
in file database.php, class constant KDatabase::FETCH_FIELD_LIST
FETCH_OBJECT
in file database.php, class constant KDatabase::FETCH_OBJECT
FETCH_OBJECT_LIST
in file database.php, class constant KDatabase::FETCH_OBJECT_LIST
FETCH_ROW
in file database.php, class constant KDatabase::FETCH_ROW
    Database fetch mode
FETCH_ROWSET
in file database.php, class constant KDatabase::FETCH_ROWSET
$from
in file query.php, variable KDatabaseQuery::$from
    The from element
from
in file query.php, method KDatabaseQuery::from()
    Built the from clause of the query
find
in file interface.php, method KDatabaseRowsetInterface::find()
    Returns a KDatabaseRow
find
in file abstract.php, method KDatabaseRowsetAbstract::find()
    Returns a KDatabaseRow
filter
in file abstract.php, method KDatabaseTableAbstract::filter()
    Table filter method
top

g

getConnection
in file abstract.php, method KDatabaseAdapterAbstract::getConnection()
    Get the connection
getConnection
in file interface.php, method KDatabaseAdapterInterface::getConnection()
    Get the connection
getDatabase
in file abstract.php, method KDatabaseAdapterAbstract::getDatabase()
    Get the database name
getDatabase
in file mysqli.php, method KDatabaseAdapterMysqli::getDatabase()
    Get the database name
getInsertId
in file abstract.php, method KDatabaseAdapterAbstract::getInsertId()
    Get the insert id of the last insert operation
getInsertId
in file interface.php, method KDatabaseAdapterInterface::getInsertId()
    Get the insert id of the last insert operation
getQuery
in file abstract.php, method KDatabaseAdapterAbstract::getQuery()
    Get a database query object
getQuery
in file interface.php, method KDatabaseAdapterInterface::getQuery()
    Get a database query object
getTableNeedle
in file interface.php, method KDatabaseAdapterInterface::getTableNeedle()
    Get the table needle
getTableNeedle
in file abstract.php, method KDatabaseAdapterAbstract::getTableNeedle()
    Get the table needle
getTablePrefix
in file abstract.php, method KDatabaseAdapterAbstract::getTablePrefix()
    Get the table prefix
getTablePrefix
in file interface.php, method KDatabaseAdapterInterface::getTablePrefix()
    Get the table prefix
getTableSchema
in file mysqli.php, method KDatabaseAdapterMysqli::getTableSchema()
    Retrieves the table schema information about the given table
getTableSchema
in file interface.php, method KDatabaseAdapterInterface::getTableSchema()
    Retrieves the column schema information about the given table
getMaxOrdering
in file orderable.php, method KDatabaseBehaviorOrderable::getMaxOrdering()
    Find the maximum ordering within this parent
getMixableMethods
in file orderable.php, method KDatabaseBehaviorOrderable::getMixableMethods()
    Get the methods that are available for mixin based
getMixableMethods
in file sluggable.php, method KDatabaseBehaviorSluggable::getMixableMethods()
    Get the methods that are available for mixin based
getMixableMethods
in file modifiable.php, method KDatabaseBehaviorModifiable::getMixableMethods()
    Get the methods that are available for mixin based
getMixableMethods
in file lockable.php, method KDatabaseBehaviorLockable::getMixableMethods()
    Get the methods that are available for mixin based
getMixableMethods
in file creatable.php, method KDatabaseBehaviorCreatable::getMixableMethods()
    Get the methods that are available for mixin based
getMixableMethods
in file identifiable.php, method KDatabaseBehaviorIdentifiable::getMixableMethods()
    Get the methods that are available for mixin based
getMixableMethods
in file abstract.php, method KDatabaseBehaviorAbstract::getMixableMethods()
    Get the methods that are available for mixin based
$group
in file query.php, variable KDatabaseQuery::$group
    The group element
getAdapter
in file query.php, method KDatabaseQuery::getAdapter()
    Gets the database adapter for this particular KDatabaseQuery object.
group
in file query.php, method KDatabaseQuery::group()
    Built the group clause of the query
getData
in file abstract.php, method KDatabaseRowAbstract::getData()
    Returns an associative array of the raw data
getData
in file interface.php, method KDatabaseRowInterface::getData()
    Returns an associative array of the raw data
getIdentityColumn
in file abstract.php, method KDatabaseRowAbstract::getIdentityColumn()
    Gets the identitiy column of the rowset
getModified
in file abstract.php, method KDatabaseRowAbstract::getModified()
    Get a list of columns that have been modified
getModified
in file interface.php, method KDatabaseRowInterface::getModified()
    Get a list of columns that have been modified
getStatus
in file abstract.php, method KDatabaseRowAbstract::getStatus()
    Returns the status
getStatus
in file interface.php, method KDatabaseRowInterface::getStatus()
    Returns the status of this row.
getStatusMessage
in file abstract.php, method KDatabaseRowAbstract::getStatusMessage()
    Returns the status message
getTable
in file table.php, method KDatabaseRowTable::getTable()
    Method to get a table object
getColumn
in file abstract.php, method KDatabaseRowsetAbstract::getColumn()
    Retrieve an array of column values
getData
in file abstract.php, method KDatabaseRowsetAbstract::getData()
    Returns all data as an array.
getData
in file interface.php, method KDatabaseRowsetInterface::getData()
    Returns all data as an array.
getIdentityColumn
in file interface.php, method KDatabaseRowsetInterface::getIdentityColumn()
    Gets the identity column of the rowset
getIdentityColumn
in file abstract.php, method KDatabaseRowsetAbstract::getIdentityColumn()
    Gets the identity column of the rowset
getRow
in file table.php, method KDatabaseRowsetTable::getRow()
    Get an empty row
getRow
in file abstract.php, method KDatabaseRowsetAbstract::getRow()
    Get an instance of a row object for this rowset
getTable
in file table.php, method KDatabaseRowsetTable::getTable()
    Method to get a table object
getBase
in file abstract.php, method KDatabaseTableAbstract::getBase()
    Gets the base table name without the table prefix
getColumn
in file abstract.php, method KDatabaseTableAbstract::getColumn()
    Get a column by name
getColumns
in file abstract.php, method KDatabaseTableAbstract::getColumns()
    Gets the columns for the table
getDatabase
in file abstract.php, method KDatabaseTableAbstract::getDatabase()
    Get the database adapter
getDefault
in file abstract.php, method KDatabaseTableAbstract::getDefault()
    Get a default by name
getDefaults
in file abstract.php, method KDatabaseTableAbstract::getDefaults()
    Get default values for all columns
getIdentityColumn
in file abstract.php, method KDatabaseTableAbstract::getIdentityColumn()
    Gets the identitiy column of the table.
getInstance
in file default.php, method KDatabaseTableDefault::getInstance()
    Force creation of a singleton
getName
in file abstract.php, method KDatabaseTableAbstract::getName()
    Gets the table schema name without the table prefix
getPrimaryKey
in file abstract.php, method KDatabaseTableAbstract::getPrimaryKey()
    Gets the primary key(s) of the table
getRow
in file abstract.php, method KDatabaseTableAbstract::getRow()
    Get an instance of a row object for this table
getRowset
in file abstract.php, method KDatabaseTableAbstract::getRowset()
    Get an instance of a rowset object for this table
getSchema
in file abstract.php, method KDatabaseTableAbstract::getSchema()
    Gets the schema of the table
getUniqueColumns
in file abstract.php, method KDatabaseTableAbstract::getUniqueColumns()
    Gets the unqiue columns of the table
top

h

$having
in file query.php, variable KDatabaseQuery::$having
    The having element
having
in file query.php, method KDatabaseQuery::having()
    Built the having clause of the query
top

i

insert
in file abstract.php, method KDatabaseAdapterAbstract::insert()
    Inserts a row of data into a table.
insert
in file interface.php, method KDatabaseAdapterInterface::insert()
    Inserts a row of data into a table.
isConnected
in file mysqli.php, method KDatabaseAdapterMysqli::isConnected()
    Check if the connection is active
isConnected
in file interface.php, method KDatabaseAdapterInterface::isConnected()
    Determines if the connection to the server is active.
interface.php
procedural page interface.php
identifiable.php
procedural page identifiable.php
isConnected
in file interface.php, method KDatabaseRowInterface::isConnected()
    Test the connected status of the row.
isConnected
in file table.php, method KDatabaseRowTable::isConnected()
    Test the connected status of the row.
isConnected
in file abstract.php, method KDatabaseRowAbstract::isConnected()
    Test the connected status of the row.
isModified
in file interface.php, method KDatabaseRowInterface::isModified()
    Check if a column has been modified
isModified
in file abstract.php, method KDatabaseRowAbstract::isModified()
    Check if a column has been modified
isNew
in file interface.php, method KDatabaseRowInterface::isNew()
    Checks if the row is new or not
isNew
in file abstract.php, method KDatabaseRowAbstract::isNew()
    Checks if the row is new or not
interface.php
procedural page interface.php
insert
in file interface.php, method KDatabaseRowsetInterface::insert()
    Insert a row into the rowset
insert
in file abstract.php, method KDatabaseRowsetAbstract::insert()
    Insert a row into the rowset
isConnected
in file interface.php, method KDatabaseRowsetInterface::isConnected()
    Test the connected status of the rowset.
isConnected
in file abstract.php, method KDatabaseRowsetAbstract::isConnected()
    Test the connected status of the rowset.
isConnected
in file table.php, method KDatabaseRowsetTable::isConnected()
    Test the connected status of the row.
interface.php
procedural page interface.php
$indexes
in file table.php, variable KDatabaseSchemaTable::$indexes
    List of indexes
insert
in file abstract.php, method KDatabaseTableAbstract::insert()
    Table insert method
isConnected
in file abstract.php, method KDatabaseTableAbstract::isConnected()
    Test the connected status of the table
top

j

$join
in file query.php, variable KDatabaseQuery::$join
    The join element
join
in file query.php, method KDatabaseQuery::join()
    Built the join clause of the query
top

k

KDatabase
in file database.php, class KDatabase
    Database Namespace class
KDatabaseException
in file exception.php, class KDatabaseException
    Koowa Database Exception class
KDatabaseAdapterAbstract
in file abstract.php, class KDatabaseAdapterAbstract
    Abstract Database Adapter
KDatabaseAdapterException
in file exception.php, class KDatabaseAdapterException
    Koowa Database Exception class
KDatabaseAdapterInterface
in file interface.php, class KDatabaseAdapterInterface
    Database Adapter Interface
KDatabaseAdapterMysqli
in file mysqli.php, class KDatabaseAdapterMysqli
    Mysqli Database Adapter
KDatabaseBehaviorAbstract
in file abstract.php, class KDatabaseBehaviorAbstract
    Abstract Database Behavior
KDatabaseBehaviorCreatable
in file creatable.php, class KDatabaseBehaviorCreatable
    Database Creatable Behavior
KDatabaseBehaviorException
in file exception.php, class KDatabaseBehaviorException
    Koowa Database Schema Exception class
KDatabaseBehaviorIdentifiable
in file identifiable.php, class KDatabaseBehaviorIdentifiable
    Database Identifiable Behavior
KDatabaseBehaviorLockable
in file lockable.php, class KDatabaseBehaviorLockable
    Database Lockable Behavior
KDatabaseBehaviorModifiable
in file modifiable.php, class KDatabaseBehaviorModifiable
    Database Modifiable Behavior
KDatabaseBehaviorOrderable
in file orderable.php, class KDatabaseBehaviorOrderable
    Database Orderable Behavior
KDatabaseBehaviorSluggable
in file sluggable.php, class KDatabaseBehaviorSluggable
    Database Sluggable Behavior
KTemplateFilter
in file filter.php, class KTemplateFilter
    Template Filter Factory
KDatabaseQuery
in file query.php, class KDatabaseQuery
    Database Select Class for database select statement generation
KDatabaseRowAbstract
in file abstract.php, class KDatabaseRowAbstract
    Abstract Row Class
KDatabaseRowDefault
in file default.php, class KDatabaseRowDefault
    Default Row Default
KDatabaseRowException
in file exception.php, class KDatabaseRowException
    Database Row Exception class
KDatabaseRowInterface
in file interface.php, class KDatabaseRowInterface
    Database Row Interface
KDatabaseRowTable
in file table.php, class KDatabaseRowTable
    Table Row Class
KDatabaseRowsetAbstract
in file abstract.php, class KDatabaseRowsetAbstract
    Abstract Rowset Class
KDatabaseRowsetDefault
in file default.php, class KDatabaseRowsetDefault
    Default Rowset Default
KDatabaseRowsetException
in file exception.php, class KDatabaseRowsetException
    Koowa Database Exception class
KDatabaseRowsetInterface
in file interface.php, class KDatabaseRowsetInterface
    Database Rowset Interface
KDatabaseRowsetTable
in file table.php, class KDatabaseRowsetTable
    Table Rowset Class
KDatabaseSchemaColumn
in file column.php, class KDatabaseSchemaColumn
    Database Schema Column Class
KDatabaseSchemaException
in file exception.php, class KDatabaseSchemaException
    Koowa Database Schema Exception class
KDatabaseSchemaTable
in file table.php, class KDatabaseSchemaTable
    Database Schema Table Class
KDatabaseTableAbstract
in file abstract.php, class KDatabaseTableAbstract
    Abstract Table Class
KDatabaseTableDefault
in file default.php, class KDatabaseTableDefault
    Default Database Table Class
KDatabaseTableException
in file exception.php, class KDatabaseTableException
    Koowa Database Exception class
top

l

lockTable
in file mysqli.php, method KDatabaseAdapterMysqli::lockTable()
    Lock a table.
lockTable
in file interface.php, method KDatabaseAdapterInterface::lockTable()
    Lock a table.
lockable.php
procedural page lockable.php
lock
in file lockable.php, method KDatabaseBehaviorLockable::lock()
    Lock a row
locked
in file lockable.php, method KDatabaseBehaviorLockable::locked()
    Checks if a row is locked
lockMessage
in file lockable.php, method KDatabaseBehaviorLockable::lockMessage()
    Get the locked information
$limit
in file query.php, variable KDatabaseQuery::$limit
    The limit element
limit
in file query.php, method KDatabaseQuery::limit()
    Built the limit element of the query
load
in file table.php, method KDatabaseRowTable::load()
    Load the row from the database using the data in the row
load
in file interface.php, method KDatabaseRowInterface::load()
    Load the row from the database.
load
in file abstract.php, method KDatabaseRowAbstract::load()
    Load the row from the database.
$length
in file table.php, variable KDatabaseSchemaTable::$length
    Table length
$length
in file column.php, variable KDatabaseSchemaColumn::$length
    Column length
lock
in file abstract.php, method KDatabaseTableAbstract::lock()
    Lock the table.
top

m

mysqli.php
procedural page mysqli.php
modifiable.php
procedural page modifiable.php
MODE_READ
in file filter.php, class constant KTemplateFilter::MODE_READ
    Filter modes
MODE_WRITE
in file filter.php, class constant KTemplateFilter::MODE_WRITE
mapColumns
in file abstract.php, method KDatabaseTableAbstract::mapColumns()
    Table map method
top

n

$name
in file table.php, variable KDatabaseSchemaTable::$name
    Table name
$name
in file column.php, variable KDatabaseSchemaColumn::$name
    Column name
top

o

OPERATION_DELETE
in file database.php, class constant KDatabase::OPERATION_DELETE
OPERATION_INSERT
in file database.php, class constant KDatabase::OPERATION_INSERT
OPERATION_SELECT
in file database.php, class constant KDatabase::OPERATION_SELECT
    Database operations
OPERATION_SHOW
in file database.php, class constant KDatabase::OPERATION_SHOW
OPERATION_UPDATE
in file database.php, class constant KDatabase::OPERATION_UPDATE
orderable.php
procedural page orderable.php
order
in file orderable.php, method KDatabaseBehaviorOrderable::order()
    Move the row up or down in the ordering
$offset
in file query.php, variable KDatabaseQuery::$offset
    The limit offset element
$order
in file query.php, variable KDatabaseQuery::$order
    The order element
order
in file query.php, method KDatabaseQuery::order()
    Build the order clause of the query
top

p

$primary
in file column.php, variable KDatabaseSchemaColumn::$primary
    Is the column a primary key
top

q

quoteName
in file interface.php, method KDatabaseAdapterInterface::quoteName()
    Quotes a single identifier name (table, table alias, table column, index, sequence). Ignores empty values.
quoteName
in file abstract.php, method KDatabaseAdapterAbstract::quoteName()
    Quotes a single identifier name (table, table alias, table column, index, sequence). Ignores empty values.
quoteValue
in file interface.php, method KDatabaseAdapterInterface::quoteValue()
    Safely quotes a value for an SQL statement.
quoteValue
in file abstract.php, method KDatabaseAdapterAbstract::quoteValue()
    Safely quotes a value for an SQL statement.
query.php
procedural page query.php
top

r

RESULT_STORE
in file database.php, class constant KDatabase::RESULT_STORE
    Database result mode
RESULT_USE
in file database.php, class constant KDatabase::RESULT_USE
reconnect
in file interface.php, method KDatabaseAdapterInterface::reconnect()
    Reconnect to the db
reconnect
in file abstract.php, method KDatabaseAdapterAbstract::reconnect()
    Reconnect to the db
replaceTableNeedle
in file interface.php, method KDatabaseAdapterInterface::replaceTableNeedle()
    This function replaces the table needles in a query string with the actual table prefix.
replaceTableNeedle
in file abstract.php, method KDatabaseAdapterAbstract::replaceTableNeedle()
    This function replaces the table needles in a query string with the actual table prefix.
reorder
in file orderable.php, method KDatabaseBehaviorOrderable::reorder()
    Resets the order of all rows
reset
in file table.php, method KDatabaseRowTable::reset()
    Reset the row data using the defaults
reset
in file interface.php, method KDatabaseRowInterface::reset()
    Resets to the default properties
reset
in file abstract.php, method KDatabaseRowAbstract::reset()
    Resets to the default properties
reset
in file interface.php, method KDatabaseRowsetInterface::reset()
    Reset the rowset
reset
in file abstract.php, method KDatabaseRowsetAbstract::reset()
    Reset the rowset
$related
in file column.php, variable KDatabaseSchemaColumn::$related
    Related index columns
$required
in file column.php, variable KDatabaseSchemaColumn::$required
    Required column
top

s

STATUS_CREATED
in file database.php, class constant KDatabase::STATUS_CREATED
STATUS_DELETED
in file database.php, class constant KDatabase::STATUS_DELETED
STATUS_FAILED
in file database.php, class constant KDatabase::STATUS_FAILED
STATUS_LOADED
in file database.php, class constant KDatabase::STATUS_LOADED
    Row states
STATUS_UPDATED
in file database.php, class constant KDatabase::STATUS_UPDATED
select
in file abstract.php, method KDatabaseAdapterAbstract::select()
    Preforms a select query
select
in file interface.php, method KDatabaseAdapterInterface::select()
    Preforms a select query
setConnection
in file mysqli.php, method KDatabaseAdapterMysqli::setConnection()
    Set the connection
setConnection
in file abstract.php, method KDatabaseAdapterAbstract::setConnection()
    Set the connection
setConnection
in file interface.php, method KDatabaseAdapterInterface::setConnection()
    Set the connection
setDatabase
in file mysqli.php, method KDatabaseAdapterMysqli::setDatabase()
    Set the database name
setDatabase
in file abstract.php, method KDatabaseAdapterAbstract::setDatabase()
    Set the database name
setTablePrefix
in file abstract.php, method KDatabaseAdapterAbstract::setTablePrefix()
    Set the table prefix
setTablePrefix
in file interface.php, method KDatabaseAdapterInterface::setTablePrefix()
    Set the table prefix
show
in file abstract.php, method KDatabaseAdapterAbstract::show()
    Preforms a show query
show
in file interface.php, method KDatabaseAdapterInterface::show()
    Preforms a show query
sluggable.php
procedural page sluggable.php
save
in file abstract.php, method KDatabaseBehaviorAbstract::save()
    Saves the row or rowset in the database.
select
in file query.php, method KDatabaseQuery::select()
    Built a select query
setAdapter
in file query.php, method KDatabaseQuery::setAdapter()
    Set the database adapter for this particular KDatabaseQuery object.
save
in file interface.php, method KDatabaseRowInterface::save()
    Saves the row to the database.
save
in file abstract.php, method KDatabaseRowAbstract::save()
    Saves the row to the database.
save
in file table.php, method KDatabaseRowTable::save()
    Saves the row to the database.
setData
in file abstract.php, method KDatabaseRowAbstract::setData()
    Set the row data
setData
in file interface.php, method KDatabaseRowInterface::setData()
    Set the row data
setStatus
in file abstract.php, method KDatabaseRowAbstract::setStatus()
    Set the status
setStatusMessage
in file abstract.php, method KDatabaseRowAbstract::setStatusMessage()
    Set the status message
setTable
in file table.php, method KDatabaseRowTable::setTable()
    Method to set a table object attached to the rowset
save
in file interface.php, method KDatabaseRowsetInterface::save()
    Saves all rows in the rowset to the database
save
in file abstract.php, method KDatabaseRowsetAbstract::save()
    Saves all rows in the rowset to the database
setColumn
in file abstract.php, method KDatabaseRowsetAbstract::setColumn()
    Set the value of all the columns
setData
in file interface.php, method KDatabaseRowsetInterface::setData()
    Set the rowset data based on a named array/hash
setData
in file abstract.php, method KDatabaseRowsetAbstract::setData()
    Set the rowset data based on a named array/hash
setTable
in file table.php, method KDatabaseRowsetTable::setTable()
    Method to set a table object attached to the rowset
$scope
in file column.php, variable KDatabaseSchemaColumn::$scope
    Column scope
select
in file abstract.php, method KDatabaseTableAbstract::select()
    Table select method
setDatabase
in file abstract.php, method KDatabaseTableAbstract::setDatabase()
    Set the database adapter
top

t

table.php
procedural page table.php
table.php
procedural page table.php
toArray
in file abstract.php, method KDatabaseRowsetAbstract::toArray()
    Return an associative array of the data.
$type
in file column.php, variable KDatabaseSchemaColumn::$type
    Column type
$type
in file table.php, variable KDatabaseSchemaTable::$type
    Table type
table.php
procedural page table.php
top

u

unlockTable
in file mysqli.php, method KDatabaseAdapterMysqli::unlockTable()
    Unlock a table.
unlockTable
in file interface.php, method KDatabaseAdapterInterface::unlockTable()
    Unlock a table.
update
in file abstract.php, method KDatabaseAdapterAbstract::update()
    Updates a table with specified data based on a WHERE clause
update
in file interface.php, method KDatabaseAdapterInterface::update()
    Updates a table with specified data based on a WHERE clause
unlock
in file lockable.php, method KDatabaseBehaviorLockable::unlock()
    Unlock a row
$unique
in file column.php, variable KDatabaseSchemaColumn::$unique
    Is the column unqiue
unlock
in file abstract.php, method KDatabaseTableAbstract::unlock()
    Unlock the table.
update
in file abstract.php, method KDatabaseTableAbstract::update()
    Table update method
top

w

$where
in file query.php, variable KDatabaseQuery::$where
    The where element
where
in file query.php, method KDatabaseQuery::where()
    Built the where clause of the query
top

Documentation generated on Thu, 23 May 2013 03:00:17 +0200 by phpDocumentor 1.4.3