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

Element index for package creole.common

[ a ] [ b ] [ c ] [ d ] [ e ] [ f ] [ g ] [ i ] [ l ] [ o ] [ p ] [ r ] [ s ] [ t ] [ u ] [ w ] [ _ ]

_

__construct
in file StatementCommon.php, method StatementCommon::__construct()
    Create new statement instance.
__construct
in file ResultSetCommon.php, method ResultSetCommon::__construct()
__construct
in file PreparedStatementCommon.php, method PreparedStatementCommon::__construct()
    Create new prepared statement instance.
__destruct
in file ResultSetCommon.php, method ResultSetCommon::__destruct()
    Destructor
__sleep
in file ConnectionCommon.php, method ConnectionCommon::__sleep()
    This "magic" method is invoked upon serialize() and works in tandem with the __wakeup() method to ensure that your database connection is serializable.
__wakeup
in file ConnectionCommon.php, method ConnectionCommon::__wakeup()
    This "magic" method is invoked upon unserialize().
top

a

$autocommit
in file ConnectionCommon.php, variable ConnectionCommon::$autocommit
absolute
in file ResultSetCommon.php, method ResultSetCommon::absolute()
afterLast
in file ResultSetCommon.php, method ResultSetCommon::afterLast()
top

b

$boundInVars
in file PreparedStatementCommon.php, variable PreparedStatementCommon::$boundInVars
    Map of index => value for bound params.
beforeFirst
in file ResultSetCommon.php, method ResultSetCommon::beforeFirst()
top

c

$conn
in file ResultSetCommon.php, variable ResultSetCommon::$conn
    DB connection.
$conn
in file StatementCommon.php, variable StatementCommon::$conn
    The database connection.
$conn
in file PreparedStatementCommon.php, variable PreparedStatementCommon::$conn
    The database connection.
$cursorPos
in file ResultSetCommon.php, variable ResultSetCommon::$cursorPos
    The current cursor position (row number). First row is 0.
close
in file StatementCommon.php, method StatementCommon::close()
    Free resources associated with this statement.
close
in file PreparedStatementCommon.php, method PreparedStatementCommon::close()
    Nothing to close for emulated prepared statements.
ConnectionCommon
in file ConnectionCommon.php, class ConnectionCommon
    Class that contains some shared/default information for connections. Classes may wish to extend this so as not to worry about the sleep/wakeup methods, etc.
ConnectionCommon.php
procedural page ConnectionCommon.php
top

d

$dblink
in file ConnectionCommon.php, variable ConnectionCommon::$dblink
    DB connection resource id.
$dsn
in file ConnectionCommon.php, variable ConnectionCommon::$dsn
    Array hash of connection properties.
top

e

escape
in file PreparedStatementCommon.php, method PreparedStatementCommon::escape()
    Escapes special characters (usu. quotes) using native driver function.
execute
in file StatementCommon.php, method StatementCommon::execute()
    Generic execute() function has to check to see whether SQL is an update or select query.
executeQuery
in file PreparedStatementCommon.php, method PreparedStatementCommon::executeQuery()
    Executes the SQL query in this PreparedStatement object and returns the resultset generated by the query.
executeQuery
in file StatementCommon.php, method StatementCommon::executeQuery()
    Executes the SQL query in this PreparedStatement object and returns the resultset generated by the query.
executeUpdate
in file StatementCommon.php, method StatementCommon::executeUpdate()
    Executes the SQL INSERT, UPDATE, or DELETE statement in this PreparedStatement object.
executeUpdate
in file PreparedStatementCommon.php, method PreparedStatementCommon::executeUpdate()
    Executes the SQL INSERT, UPDATE, or DELETE statement in this PreparedStatement object.
top

f

$fetchmode
in file ResultSetCommon.php, variable ResultSetCommon::$fetchmode
    The fetchmode for this recordset.
$fields
in file ResultSetCommon.php, variable ResultSetCommon::$fields
    The current unprocessed record/row from the db.
$flags
in file ConnectionCommon.php, variable ConnectionCommon::$flags
    Flags (e.g. Connection::PERSISTENT) for current connection.
first
in file ResultSetCommon.php, method ResultSetCommon::first()
top

g

get
in file ResultSetCommon.php, method ResultSetCommon::get()
getArray
in file ResultSetCommon.php, method ResultSetCommon::getArray()
getAutoCommit
in file ConnectionCommon.php, method ConnectionCommon::getAutoCommit()
    Get auto-commit status.
getBlob
in file ResultSetCommon.php, method ResultSetCommon::getBlob()
getBoolean
in file ResultSetCommon.php, method ResultSetCommon::getBoolean()
getClob
in file ResultSetCommon.php, method ResultSetCommon::getClob()
getConnection
in file StatementCommon.php, method StatementCommon::getConnection()
    Gets the db Connection that created this statement.
getConnection
in file PreparedStatementCommon.php, method PreparedStatementCommon::getConnection()
getCursorPos
in file ResultSetCommon.php, method ResultSetCommon::getCursorPos()
getDate
in file ResultSetCommon.php, method ResultSetCommon::getDate()
getDSN
in file ConnectionCommon.php, method ConnectionCommon::getDSN()
getFetchmode
in file ResultSetCommon.php, method ResultSetCommon::getFetchmode()
getFlags
in file ConnectionCommon.php, method ConnectionCommon::getFlags()
getFloat
in file ResultSetCommon.php, method ResultSetCommon::getFloat()
getInt
in file ResultSetCommon.php, method ResultSetCommon::getInt()
getIterator
in file ResultSetCommon.php, method ResultSetCommon::getIterator()
getLimit
in file StatementCommon.php, method StatementCommon::getLimit()
    Returns the maximum number of rows to return or 0 for all.
getLimit
in file PreparedStatementCommon.php, method PreparedStatementCommon::getLimit()
getMoreResults
in file PreparedStatementCommon.php, method PreparedStatementCommon::getMoreResults()
getMoreResults
in file StatementCommon.php, method StatementCommon::getMoreResults()
    Gets next result set (if this behavior is supported by driver).
getOffset
in file PreparedStatementCommon.php, method PreparedStatementCommon::getOffset()
getOffset
in file StatementCommon.php, method StatementCommon::getOffset()
    Returns the start row.
getResource
in file ConnectionCommon.php, method ConnectionCommon::getResource()
getResource
in file PreparedStatementCommon.php, method PreparedStatementCommon::getResource()
    Statement resources do not exist for emulated prepared statements, so this just returns
  1. null
.
getResource
in file ResultSetCommon.php, method ResultSetCommon::getResource()
getResultSet
in file PreparedStatementCommon.php, method PreparedStatementCommon::getResultSet()
getResultSet
in file StatementCommon.php, method StatementCommon::getResultSet()
    Get result set.
getRow
in file ResultSetCommon.php, method ResultSetCommon::getRow()
getString
in file ResultSetCommon.php, method ResultSetCommon::getString()
getTime
in file ResultSetCommon.php, method ResultSetCommon::getTime()
getTimestamp
in file ResultSetCommon.php, method ResultSetCommon::getTimestamp()
getUpdateCount
in file StatementCommon.php, method StatementCommon::getUpdateCount()
    Get update count.
getUpdateCount
in file PreparedStatementCommon.php, method PreparedStatementCommon::getUpdateCount()
top

i

$ignoreAssocCase
in file ResultSetCommon.php, variable ResultSetCommon::$ignoreAssocCase
    Whether to convert assoc col case.
isAfterLast
in file ResultSetCommon.php, method ResultSetCommon::isAfterLast()
isBeforeFirst
in file ResultSetCommon.php, method ResultSetCommon::isBeforeFirst()
isIgnoreAssocCase
in file ResultSetCommon.php, method ResultSetCommon::isIgnoreAssocCase()
isSelect
in file StatementCommon.php, method StatementCommon::isSelect()
    Returns whether the passed SQL is a SELECT statement.
top

l

$limit
in file PreparedStatementCommon.php, variable PreparedStatementCommon::$limit
    Max rows to retrieve from DB.
$limit
in file StatementCommon.php, variable StatementCommon::$limit
    Max rows to retrieve from DB.
last
in file ResultSetCommon.php, method ResultSetCommon::last()
top

o

$offset
in file StatementCommon.php, variable StatementCommon::$offset
    Offset at which to start processing DB rows.
$offset
in file PreparedStatementCommon.php, variable PreparedStatementCommon::$offset
    Offset at which to start processing DB rows.
top

p

$positions
in file PreparedStatementCommon.php, variable PreparedStatementCommon::$positions
    The string positions of the parameters in the SQL.
$positionsCount
in file PreparedStatementCommon.php, variable PreparedStatementCommon::$positionsCount
    Number of positions (simply to save processing).
PreparedStatementCommon.php
procedural page PreparedStatementCommon.php
prepareCall
in file ConnectionCommon.php, method ConnectionCommon::prepareCall()
    Creates a CallableStatement object for calling database stored procedures.
PreparedStatementCommon
in file PreparedStatementCommon.php, class PreparedStatementCommon
    Class that represents a shared code for handling emulated pre-compiled statements.
previous
in file ResultSetCommon.php, method ResultSetCommon::previous()
top

r

$result
in file ResultSetCommon.php, variable ResultSetCommon::$result
    Resource identifier used for native result set handling.
$resultClass
in file StatementCommon.php, variable StatementCommon::$resultClass
    The ResultSet class name.
$resultSet
in file StatementCommon.php, variable StatementCommon::$resultSet
    Temporarily hold a ResultSet object after an execute() query.
$resultSet
in file PreparedStatementCommon.php, variable PreparedStatementCommon::$resultSet
    Temporarily hold a ResultSet object after an execute() query.
ResultSetCommon.php
procedural page ResultSetCommon.php
relative
in file ResultSetCommon.php, method ResultSetCommon::relative()
replaceParams
in file PreparedStatementCommon.php, method PreparedStatementCommon::replaceParams()
    Replaces placeholders with the specified parameter values in the SQL.
ResultSetCommon
in file ResultSetCommon.php, class ResultSetCommon
    This class implements many shared or common methods needed by resultset drivers.
top

s

$sql
in file PreparedStatementCommon.php, variable PreparedStatementCommon::$sql
    The SQL this class operates on.
$stmt
in file StatementCommon.php, variable StatementCommon::$stmt
    The prepared statement resource id.
StatementCommon.php
procedural page StatementCommon.php
set
in file PreparedStatementCommon.php, method PreparedStatementCommon::set()
    A generic set method.
setArray
in file PreparedStatementCommon.php, method PreparedStatementCommon::setArray()
    Sets an array.
setAutoCommit
in file ConnectionCommon.php, method ConnectionCommon::setAutoCommit()
    Enable/disable automatic commits.
setBlob
in file PreparedStatementCommon.php, method PreparedStatementCommon::setBlob()
setBoolean
in file PreparedStatementCommon.php, method PreparedStatementCommon::setBoolean()
    Sets a boolean value.
setClob
in file PreparedStatementCommon.php, method PreparedStatementCommon::setClob()
setDate
in file PreparedStatementCommon.php, method PreparedStatementCommon::setDate()
setDecimal
in file PreparedStatementCommon.php, method PreparedStatementCommon::setDecimal()
setDouble
in file PreparedStatementCommon.php, method PreparedStatementCommon::setDouble()
setFetchmode
in file ResultSetCommon.php, method ResultSetCommon::setFetchmode()
setFloat
in file PreparedStatementCommon.php, method PreparedStatementCommon::setFloat()
setInt
in file PreparedStatementCommon.php, method PreparedStatementCommon::setInt()
setInteger
in file PreparedStatementCommon.php, method PreparedStatementCommon::setInteger()
    Alias for setInt()
setLimit
in file StatementCommon.php, method StatementCommon::setLimit()
    Sets the maximum number of rows to return from db.
setLimit
in file PreparedStatementCommon.php, method PreparedStatementCommon::setLimit()
setNull
in file PreparedStatementCommon.php, method PreparedStatementCommon::setNull()
setOffset
in file StatementCommon.php, method StatementCommon::setOffset()
    Sets the start row.
setOffset
in file PreparedStatementCommon.php, method PreparedStatementCommon::setOffset()
setString
in file PreparedStatementCommon.php, method PreparedStatementCommon::setString()
setTime
in file PreparedStatementCommon.php, method PreparedStatementCommon::setTime()
setTimestamp
in file PreparedStatementCommon.php, method PreparedStatementCommon::setTimestamp()
StatementCommon
in file StatementCommon.php, class StatementCommon
    Class that contains common/shared functionality for Statements.
top

t

$transactionOpcount
in file ConnectionCommon.php, variable ConnectionCommon::$transactionOpcount
    The depth level of current transaction.
top

u

$updateCount
in file StatementCommon.php, variable StatementCommon::$updateCount
    Temporary hold the affected row cound after an execute() query.
$updateCount
in file PreparedStatementCommon.php, variable PreparedStatementCommon::$updateCount
    Temporary hold the affected row cound after an execute() query.
top

w

$warnings
in file StatementCommon.php, variable StatementCommon::$warnings
    Array of warning objects generated by methods performed on result set.
top

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