propel-adapter
[ class tree: propel-adapter ] [ index: propel-adapter ] [ all elements ]

Element index for package propel-adapter

[ a ] [ c ] [ d ] [ f ] [ g ] [ i ] [ l ] [ q ] [ r ] [ s ] [ t ] [ u ]

a

applyLimit
in file DBPostgres.php, method DBPostgres::applyLimit()
applyLimit
in file DBSQLite.php, method DBSQLite::applyLimit()
applyLimit
in file DBOracle.php, method DBOracle::applyLimit()
applyLimit
in file DBMySQL.php, method DBMySQL::applyLimit()
applyLimit
in file DBMSSQL.php, method DBMSSQL::applyLimit()
    Simulated Limit/Offset This rewrites the $sql query to apply the offset and limit.
applyLimit
in file DBAdapter.php, method DBAdapter::applyLimit()
    Modifies the passed-in SQL to add LIMIT and/or OFFSET.
top

c

concatString
in file DBSQLite.php, method DBSQLite::concatString()
    Returns SQL which concatenates the second string to the first.
concatString
in file DBSybase.php, method DBSybase::concatString()
    Returns SQL which concatenates the second string to the first.
concatString
in file DBPostgres.php, method DBPostgres::concatString()
    Returns SQL which concatenates the second string to the first.
concatString
in file DBOracle.php, method DBOracle::concatString()
    Returns SQL which concatenates the second string to the first.
concatString
in file DBMySQL.php, method DBMySQL::concatString()
    Returns SQL which concatenates the second string to the first.
concatString
in file DBNone.php, method DBNone::concatString()
    Returns SQL which concatenates the second string to the first.
concatString
in file DBAdapter.php, method DBAdapter::concatString()
    Returns SQL which concatenates the second string to the first.
top

d

DBAdapter.php
procedural page DBAdapter.php
DBMSSQL.php
procedural page DBMSSQL.php
DBMySQL.php
procedural page DBMySQL.php
DBNone.php
procedural page DBNone.php
DBOracle.php
procedural page DBOracle.php
DBPostgres.php
procedural page DBPostgres.php
DBSQLite.php
procedural page DBSQLite.php
DBSybase.php
procedural page DBSybase.php
DBAdapter
in file DBAdapter.php, class DBAdapter
    DBAdapter</code> defines the interface for a Propel database adapter.
DBMSSQL
in file DBMSSQL.php, class DBMSSQL
    This is used to connect to a MSSQL database. For now, this class simply extends the adaptor for Sybase.
DBMySQL
in file DBMySQL.php, class DBMySQL
    This is used in order to connect to a MySQL database.
DBNone
in file DBNone.php, class DBNone
    This DatabaseHandler is used when you do not have a database installed.
DBOracle
in file DBOracle.php, class DBOracle
    Oracle adapter.
DBPostgres
in file DBPostgres.php, class DBPostgres
    This is used to connect to PostgresQL databases.
DBSQLite
in file DBSQLite.php, class DBSQLite
    This is used in order to connect to a SQLite database.
DBSybase
in file DBSybase.php, class DBSybase
    This is used to connect to a Sybase database.
top

f

factory
in file DBAdapter.php, method DBAdapter::factory()
    Creates a new instance of the database adapter associated with the specified Creole driver.
top

g

getDateFormatter
in file DBAdapter.php, method DBAdapter::getDateFormatter()
    Returns date formatter string for use in date() function.
getId
in file DBPostgres.php, method DBPostgres::getId()
    Gets ID for specified sequence name.
getId
in file DBOracle.php, method DBOracle::getId()
getId
in file DBAdapter.php, method DBAdapter::getId()
    Gets the generated ID (either last ID for autoincrement or next sequence ID).
getIdMethod
in file DBAdapter.php, method DBAdapter::getIdMethod()
    Returns the native ID method for this RDBMS.
getIdMethod
in file DBPostgres.php, method DBPostgres::getIdMethod()
getIdMethod
in file DBOracle.php, method DBOracle::getIdMethod()
getStringDelimiter
in file DBAdapter.php, method DBAdapter::getStringDelimiter()
    Returns the character used to indicate the beginning and end of a piece of text used in a SQL statement (generally a single quote).
getTimeFormatter
in file DBPostgres.php, method DBPostgres::getTimeFormatter()
    Returns timestamp formatter string for use in date() function.
getTimeFormatter
in file DBAdapter.php, method DBAdapter::getTimeFormatter()
    Returns time formatter string for use in date() function.
getTimestampFormatter
in file DBPostgres.php, method DBPostgres::getTimestampFormatter()
    Returns timestamp formatter string for use in date() function.
getTimestampFormatter
in file DBAdapter.php, method DBAdapter::getTimestampFormatter()
    Returns timestamp formatter string for use in date() function.
top

i

ID_METHOD_AUTOINCREMENT
in file DBAdapter.php, class constant DBAdapter::ID_METHOD_AUTOINCREMENT
ID_METHOD_NONE
in file DBAdapter.php, class constant DBAdapter::ID_METHOD_NONE
ID_METHOD_SEQUENCE
in file DBAdapter.php, class constant DBAdapter::ID_METHOD_SEQUENCE
ignoreCase
in file DBNone.php, method DBNone::ignoreCase()
    This method is used to ignore case.
ignoreCase
in file DBOracle.php, method DBOracle::ignoreCase()
    This method is used to ignore case.
ignoreCase
in file DBPostgres.php, method DBPostgres::ignoreCase()
    This method is used to ignore case.
ignoreCase
in file DBSQLite.php, method DBSQLite::ignoreCase()
    This method is used to ignore case.
ignoreCase
in file DBMySQL.php, method DBMySQL::ignoreCase()
    This method is used to ignore case.
ignoreCase
in file DBSybase.php, method DBSybase::ignoreCase()
    This method is used to ignore case.
ignoreCase
in file DBAdapter.php, method DBAdapter::ignoreCase()
    This method is used to ignore case.
ignoreCaseInOrderBy
in file DBAdapter.php, method DBAdapter::ignoreCaseInOrderBy()
    This method is used to ignore case in an ORDER BY clause.
init
in file DBNone.php, method DBNone::init()
initConnection
in file DBAdapter.php, method DBAdapter::initConnection()
    This method is called after a connection was created to run necessary post-initialization queries or code.
initConnection
in file DBMySQL.php, method DBMySQL::initConnection()
    This method is called after a connection was created to run necessary post-initialization queries or code.
isGetIdAfterInsert
in file DBAdapter.php, method DBAdapter::isGetIdAfterInsert()
    Whether this adapter uses an ID generation system that requires getting ID _before_ performing INSERT.
isGetIdBeforeInsert
in file DBAdapter.php, method DBAdapter::isGetIdBeforeInsert()
    Whether this adapter uses an ID generation system that requires getting ID _before_ performing INSERT.
top

l

lockTable
in file DBMySQL.php, method DBMySQL::lockTable()
    Locks the specified table.
top

q

quoteIdentifier
in file DBSybase.php, method DBSybase::quoteIdentifier()
quoteIdentifier
in file DBSQLite.php, method DBSQLite::quoteIdentifier()
quoteIdentifier
in file DBMySQL.php, method DBMySQL::quoteIdentifier()
quoteIdentifier
in file DBAdapter.php, method DBAdapter::quoteIdentifier()
    Quotes database objec identifiers (table names, col names, sequences, etc.).
top

r

random
in file DBSQLite.php, method DBSQLite::random()
random
in file DBSybase.php, method DBSybase::random()
random
in file DBPostgres.php, method DBPostgres::random()
random
in file DBOracle.php, method DBOracle::random()
random
in file DBMSSQL.php, method DBMSSQL::random()
random
in file DBMySQL.php, method DBMySQL::random()
random
in file DBAdapter.php, method DBAdapter::random()
top

s

strLength
in file DBPostgres.php, method DBPostgres::strLength()
    Returns SQL which calculates the length (in chars) of a string.
strLength
in file DBSQLite.php, method DBSQLite::strLength()
    Returns SQL which calculates the length (in chars) of a string.
strLength
in file DBSybase.php, method DBSybase::strLength()
    Returns SQL which calculates the length (in chars) of a string.
strLength
in file DBAdapter.php, method DBAdapter::strLength()
    Returns SQL which calculates the length (in chars) of a string.
strLength
in file DBOracle.php, method DBOracle::strLength()
    Returns SQL which calculates the length (in chars) of a string.
strLength
in file DBMySQL.php, method DBMySQL::strLength()
    Returns SQL which calculates the length (in chars) of a string.
strLength
in file DBNone.php, method DBNone::strLength()
    Returns SQL which calculates the length (in chars) of a string.
subString
in file DBSQLite.php, method DBSQLite::subString()
    Returns SQL which extracts a substring.
subString
in file DBSybase.php, method DBSybase::subString()
    Returns SQL which extracts a substring.
subString
in file DBAdapter.php, method DBAdapter::subString()
    Returns SQL which extracts a substring.
subString
in file DBPostgres.php, method DBPostgres::subString()
    Returns SQL which extracts a substring.
subString
in file DBOracle.php, method DBOracle::subString()
    Returns SQL which extracts a substring.
subString
in file DBMySQL.php, method DBMySQL::subString()
    Returns SQL which extracts a substring.
subString
in file DBNone.php, method DBNone::subString()
    Returns SQL which extracts a substring.
top

t

toUpperCase
in file DBSQLite.php, method DBSQLite::toUpperCase()
    This method is used to ignore case.
toUpperCase
in file DBSybase.php, method DBSybase::toUpperCase()
    This method is used to ignore case.
toUpperCase
in file DBPostgres.php, method DBPostgres::toUpperCase()
    This method is used to ignore case.
toUpperCase
in file DBOracle.php, method DBOracle::toUpperCase()
    This method is used to ignore case.
toUpperCase
in file DBMySQL.php, method DBMySQL::toUpperCase()
    This method is used to ignore case.
toUpperCase
in file DBNone.php, method DBNone::toUpperCase()
    This method is used to ignore case.
toUpperCase
in file DBAdapter.php, method DBAdapter::toUpperCase()
    This method is used to ignore case.
top

u

unlockTable
in file DBMySQL.php, method DBMySQL::unlockTable()
    Unlocks the specified table.
useQuoteIdentifier
in file DBMySQL.php, method DBMySQL::useQuoteIdentifier()
useQuoteIdentifier
in file DBAdapter.php, method DBAdapter::useQuoteIdentifier()
    Should Column-Names get identifiers for inserts or updates.
top

Documentation generated on Thu, 22 Nov 2007 03:33:18 +0000 by phpDocumentor 1.4.0