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

Element index for package DBA

[ c ] [ d ] [ e ] [ f ] [ g ] [ i ] [ j ] [ l ] [ n ] [ o ] [ p ] [ r ] [ s ] [ t ] [ u ]

c

close
in file Relational.php, method DBA_Relational::close()
    Closes all open tables
close
in file Table.php, method DBA_Table::close()
    Closes a table
cmpRows
in file Table.php, method DBA_Table::cmpRows()
    Compares two rows
create
in file Table.php, method DBA_Table::create()
    Creates a new table. Note, this is a static function, and operates independently of a table object. It no longer closes an open table.
createTable
in file Relational.php, method DBA_Relational::createTable()
    Creates a new table
top

d

DBA_DOMAIN_SEPARATOR
in file Table.php, constant DBA_DOMAIN_SEPARATOR
DBA_FIELD_SEPARATOR
in file Table.php, constant DBA_FIELD_SEPARATOR
    Reserved character used to separate fields in a row
DBA_KEY_SEPARATOR
in file Table.php, constant DBA_KEY_SEPARATOR
DBA_OPTION_SEPARATOR
in file Table.php, constant DBA_OPTION_SEPARATOR
DBA_Relational
in file Relational.php, class DBA_Relational
    A relational database manager using DBA_Table as a storage object.
DBA_Relational
in file Relational.php, method DBA_Relational::DBA_Relational()
    Constructor
DBA_SCHEMA_KEY
in file Table.php, constant DBA_SCHEMA_KEY
    Reserved key used to store the schema record
DBA_Table
in file Table.php, method DBA_Table::DBA_Table()
    Constructor
DBA_Table
in file Table.php, class DBA_Table
    DBA Table This class provides a table storage object.
dropTable
in file Relational.php, method DBA_Relational::dropTable()
    Deletes a table permanently
top

e

exists
in file Table.php, method DBA_Table::exists()
    Check if a row with a primary key exists
top

f

fetch
in file Relational.php, method DBA_Relational::fetch()
    Fetches an existing row from a table
fetch
in file Table.php, method DBA_Table::fetch()
    Fetches an existing row from a table
fieldExists
in file Table.php, method DBA_Table::fieldExists()
    Returns whether a field exists in the current table's schema
finalize
in file Table.php, method DBA_Table::finalize()
    Converts the results from any of the row operations to a 'finalized'
finalize
in file Relational.php, method DBA_Relational::finalize()
    Converts the results from any of the row operations to a 'finalized'
firstRow
in file Table.php, method DBA_Table::firstRow()
    Returns the first row in the table. The built-in cursor for the
floatval
in file Table.php, function floatval()
top

g

getFieldNames
in file Table.php, method DBA_Table::getFieldNames()
    Returns an array of the defined field names in the table
getKeys
in file Table.php, method DBA_Table::getKeys()
    Returns all keys in the table Similar to PostgrSQL's row ID's
getRows
in file Table.php, method DBA_Table::getRows()
    Returns the specified rows. A multiple-value version of getRow
getSchema
in file Table.php, method DBA_Table::getSchema()
    Returns the stored schema for the table
getSchema
in file Relational.php, method DBA_Relational::getSchema()
    Returns an array with the stored schema for the table
top

i

insert
in file Relational.php, method DBA_Relational::insert()
    Inserts a new row in a table
insert
in file Table.php, method DBA_Table::insert()
    Inserts a new row in a table
isOpen
in file Relational.php, method DBA_Relational::isOpen()
    Returns the current read status for the database
isOpen
in file Table.php, method DBA_Table::isOpen()
    Returns the current open status for the database
isReadable
in file Table.php, method DBA_Table::isReadable()
    Returns the current read status for the database
isWritable
in file Table.php, method DBA_Table::isWritable()
    Returns the current write status for the database
top

j

join
in file Relational.php, method DBA_Relational::join()
    Joins rows between two tables based on a query.
joinTables
in file Relational.php, method DBA_Relational::joinTables()
    Makes a new table joining 2 existing tables
top

l

lockEx
in file Table.php, method DBA_Table::lockEx()
    Aquire an exclusive lock on the table
lockSh
in file Table.php, method DBA_Table::lockSh()
    Aquire a shared lock on the table
top

n

nextRow
in file Table.php, method DBA_Table::nextRow()
    Returns the next row in the table after a firstRow or nextRow.
top

o

open
in file Table.php, method DBA_Table::open()
    Opens a table
top

p

project
in file Table.php, method DBA_Table::project()
    Projects rows by field. This means that a subset of the possible fields i are in the resulting rows. The SQL analog is 'select fields from table'
project
in file Relational.php, method DBA_Relational::project()
    Projects rows by field. This means that a subset of the possible fields are in the resulting rows. The SQL analog is 'select fields from table'
top

r

Relational.php
procedural page Relational.php
raiseError
in file Table.php, method DBA_Table::raiseError()
raiseError
in file Relational.php, method DBA_Relational::raiseError()
remove
in file Relational.php, method DBA_Relational::remove()
    Removes rows that match $rawQuery with $
remove
in file Table.php, method DBA_Table::remove()
    Removes existing rows from table that match $rawQuery
removeKey
in file Table.php, method DBA_Table::removeKey()
    Removes an existing row from a table, referenced by the row key
removeKey
in file Relational.php, method DBA_Relational::removeKey()
    Remove an existing row in a table
replace
in file Relational.php, method DBA_Relational::replace()
    Replaces rows that match $rawQuery
replace
in file Table.php, method DBA_Table::replace()
    Replaces rows that match $rawQuery with $data
replaceKey
in file Table.php, method DBA_Table::replaceKey()
    Replaces an existing row in a table, inserts if the row does not exist
replaceKey
in file Relational.php, method DBA_Relational::replaceKey()
    Replaces an existing row in a table, inserts if the row does not exist
top

s

select
in file Table.php, method DBA_Table::select()
    Performs a select on a table. This means that a subset of rows in a
select
in file Relational.php, method DBA_Relational::select()
    Performs a select on a table. This means that a subset of rows in a
sort
in file Table.php, method DBA_Table::sort()
    Sorts rows by field in either ascending or descending order SQL analog: 'select * from rows, order by fields'
sort
in file Relational.php, method DBA_Relational::sort()
    Sorts rows by field in either ascending or descending order SQL analog: 'select * from rows, order by fields'
top

t

Table.php
procedural page Table.php
tableExists
in file Table.php, method DBA_Table::tableExists()
    Check whether table exists
tableExists
in file Relational.php, method DBA_Relational::tableExists()
    Returns whether the specified table exists in the db home
top

u

unique
in file Table.php, method DBA_Table::unique()
    Returns the unique rows from a set of rows
unique
in file Relational.php, method DBA_Relational::unique()
    Returns the unique rows from a set of rows
top

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