[ all elements ]

Index of all elements

[ a ] [ c ] [ d ] [ f ] [ g ] [ i ] [ j ] [ l ] [ n ] [ o ] [ r ] [ s ] [ t ] [ u ] [ w ]

a

add
in file flatfile.php, method CompositeWhereClause::add()
    Add a WhereClause to the list of clauses to be used for testing
addSchema
in file flatfile.php, method Flatfile::addSchema()
    Adds a schema definition to the DB for a specified regular expression
AndWhereClause
in file flatfile.php, method AndWhereClause::AndWhereClause()
    Creates a new AndWhereClause
AndWhereClause
in file flatfile.php, class AndWhereClause
    CompositeWhereClause that does an AND on all its child WhereClauses.
ASCENDING
in file flatfile.php, constant ASCENDING
    Indicates ascending order
top

c

$clauses
in file flatfile.php, variable CompositeWhereClause::$clauses
$compareAs
in file flatfile.php, variable OrderBy::$compareAs
Column
in file flatfile_utils.php, method Column::Column()
    Create a new column object
Column
in file flatfile_utils.php, class Column
    EXPERIMENTAL: Encapsulates info about a column in a flatfile DB
CompositeWhereClause
in file flatfile.php, class CompositeWhereClause
    Abstract class that combines zero or more WhereClause objects together.
createDefines
in file flatfile_utils.php, method TableUtils::createDefines()
    Uses 'define' to create global constants for all the column names
createRowSchema
in file flatfile_utils.php, method TableUtils::createRowSchema()
    Creates a 'row schema' for a given table definition.
top

d

$datadir
in file flatfile.php, variable Flatfile::$datadir
    The directory to store files in.
DATE_COL
in file flatfile_utils.php, constant DATE_COL
    Constant to indicating a column holding unix timestamps
DEFAULT_COMPARISON
in file flatfile.php, constant DEFAULT_COMPARISON
    Used to indicate the default comparison should be done, which is STRING_COMPARISON in the absence of a schema, or whatever the schema specifies if one has been added
deleteAll
in file flatfile.php, method Flatfile::deleteAll()
    Delete all rows in a table
deleteWhere
in file flatfile.php, method Flatfile::deleteWhere()
    Deletes all rows in a table that match specified criteria
DESCENDING
in file flatfile.php, constant DESCENDING
    Indicates descending order
top

f

$field
in file flatfile.php, variable OrderBy::$field
Flatfile
in file flatfile.php, method Flatfile::Flatfile()
Flatfile
in file flatfile.php, class Flatfile
    Provides simple but powerful flatfile database storage and retrieval
flatfile.php
procedural page flatfile.php
flatfile_utils.php
procedural page flatfile_utils.php
FLOAT_COL
in file flatfile_utils.php, constant FLOAT_COL
    Constant to indicating a column holding floating point numbers
top

g

getSchema
in file flatfile.php, method Flatfile::getSchema()
    Retrieves the schema for a given filename
get_comparison_type_for_col_type
in file flatfile.php, function get_comparison_type_for_col_type()
top

i

insert
in file flatfile.php, method Flatfile::insert()
    Inserts a row in a table
insertWithAutoId
in file flatfile.php, method Flatfile::insertWithAutoId()
    Inserts a row with an automatically generated ID
intcmp
in file flatfile.php, function intcmp()
    equivalent of strcmp for comparing integers, used internally for sorting and comparing
INTEGER_COMPARISON
in file flatfile.php, constant INTEGER_COMPARISON
    Used to indicate a comparison should be done as an integer comparison
INT_COL
in file flatfile_utils.php, constant INT_COL
    Constant to indicating a column holding integers
top

j

JoinColumn
in file flatfile_utils.php, method JoinColumn::JoinColumn()
JoinColumn
in file flatfile_utils.php, class JoinColumn
    EXPERIMENTAL: Represent a column that is a foreign key. Used for temporarily building tables array
top

l

LikeWhereClause
in file flatfile.php, class LikeWhereClause
    WhereClause class to work like a SQL 'LIKE' clause
LikeWhereClause
in file flatfile.php, method LikeWhereClause::LikeWhereClause()
    Creates a new LikeWhereClause
ListWhereClause
in file flatfile.php, method ListWhereClause::ListWhereClause()
    Creates a new ListWhereClause object
ListWhereClause
in file flatfile.php, class ListWhereClause
    WhereClause class to match a value from a list of items
top

n

NotWhere
in file flatfile.php, method NotWhere::NotWhere()
    Contructs a new NotWhere object
NotWhere
in file flatfile.php, class NotWhere
    Negates a where clause
numcmp
in file flatfile.php, function numcmp()
    equivalent of strcmp for comparing floats, used internally for sorting and comparing
NUMERIC_COMPARISON
in file flatfile.php, constant NUMERIC_COMPARISON
    Used to indicate a comparison should be done as a numeric (float) comparison
top

o

$orderType
in file flatfile.php, variable OrderBy::$orderType
OrderBy
in file flatfile.php, class OrderBy
    Stores information about an ORDER BY clause
OrderBy
in file flatfile.php, method OrderBy::OrderBy()
    Creates a new OrderBy structure
OrWhereClause
in file flatfile.php, method OrWhereClause::OrWhereClause()
    Creates a new OrWhereClause
OrWhereClause
in file flatfile.php, class OrWhereClause
    CompositeWhereClause that does an OR on all its child WhereClauses.
top

r

resolveJoins
in file flatfile_utils.php, method TableUtils::resolveJoins()
    Finds JoinColumns in an array of tables, and adds 'type' fields by looking up the columns
top

s

selectAll
in file flatfile.php, method Flatfile::selectAll()
    Get all rows from a table
selectUnique
in file flatfile.php, method Flatfile::selectUnique()
    Select a row using a unique ID
selectWhere
in file flatfile.php, method Flatfile::selectWhere()
    Selects rows from a table that match the specified criteria
SimpleWhereClause
in file flatfile.php, method SimpleWhereClause::SimpleWhereClause()
    Creates a new WhereClause object that does a comparison of a field and a value.
SimpleWhereClause
in file flatfile.php, class SimpleWhereClause
    Implements a single WHERE clause that does simple comparisons of a field with a value.
STRING_COL
in file flatfile_utils.php, constant STRING_COL
    Constant to indicating a column holding strings
STRING_COMPARISON
in file flatfile.php, constant STRING_COMPARISON
    Used to indicate a comparison should be done as a string comparison
top

t

TableUtils
in file flatfile_utils.php, class TableUtils
    EXPERIMENTAL: Utilities for handling definitions of tables.
testRow
in file flatfile.php, method SimpleWhereClause::testRow()
testRow
in file flatfile.php, method WhereClause::testRow()
    Tests a table row object
testRow
in file flatfile.php, method OrWhereClause::testRow()
testRow
in file flatfile.php, method NotWhere::testRow()
testRow
in file flatfile.php, method LikeWhereClause::testRow()
testRow
in file flatfile.php, method ListWhereClause::testRow()
testRow
in file flatfile.php, method AndWhereClause::testRow()
top

u

updateRowById
in file flatfile.php, method Flatfile::updateRowById()
    Updates an existing row using a unique ID
updateSetWhere
in file flatfile.php, method Flatfile::updateSetWhere()
    Updates fields in a table for rows that match the provided criteria
top

w

WhereClause
in file flatfile.php, class WhereClause
    Used to test rows in a database table, like the WHERE clause in an SQL statement.
top

Documentation generated on Sun, 25 Oct 2009 22:30:46 +0000 by phpDocumentor 1.4.3