creole.drivers.mssql
[ class tree: creole.drivers.mssql ] [ index: creole.drivers.mssql ] [ all elements ]

Element index for package creole.drivers.mssql

[ a ] [ c ] [ e ] [ g ] [ i ] [ m ] [ n ] [ p ] [ r ] [ s ] [ _ ]

_

_setLimit
in file MSSQLResultSet.php, method MSSQLResultSet::_setLimit()
    This MSSQL-only function exists to set limit after ResultSet is instantiated.
_setOffset
in file MSSQLResultSet.php, method MSSQLResultSet::_setOffset()
    This MSSQL-only function exists to set offset after ResultSet is instantiated.
__construct
in file MSSQLIdGenerator.php, method MSSQLIdGenerator::__construct()
    Creates a new IdGenerator class, saves passed connection for use later by getId() method.
__construct
in file MSSQLCallableStatement.php, method MSSQLCallableStatement::__construct()
    Construct new MSSQLCallableStatement.
top

a

applyLimit
in file MSSQLConnection.php, method MSSQLConnection::applyLimit()
    Returns false since MSSQL doesn't support this method.
top

c

close
in file MSSQLCallableStatement.php, method MSSQLCallableStatement::close()
close
in file MSSQLConnection.php, method MSSQLConnection::close()
close
in file MSSQLResultSet.php, method MSSQLResultSet::close()
commit
in file MSSQLConnection.php, method MSSQLConnection::commit()
    Commit the current transaction.
connect
in file MSSQLConnection.php, method MSSQLConnection::connect()
createStatement
in file MSSQLConnection.php, method MSSQLConnection::createStatement()
top

e

escape
in file MSSQLPreparedStatement.php, method MSSQLPreparedStatement::escape()
    Add quotes using str_replace.
executeQuery
in file MSSQLPreparedStatement.php, method MSSQLPreparedStatement::executeQuery()
    MSSQL must emulate OFFSET/LIMIT support.
executeQuery
in file MSSQLCallableStatement.php, method MSSQLCallableStatement::executeQuery()
executeQuery
in file MSSQLConnection.php, method MSSQLConnection::executeQuery()
executeQuery
in file MSSQLStatement.php, method MSSQLStatement::executeQuery()
    Executes the SQL query in this PreparedStatement object and returns the resultset generated by the query.
executeUpdate
in file MSSQLConnection.php, method MSSQLConnection::executeUpdate()
top

g

getArray
in file MSSQLCallableStatement.php, method MSSQLCallableStatement::getArray()
getBlob
in file MSSQLCallableStatement.php, method MSSQLCallableStatement::getBlob()
getBoolean
in file MSSQLCallableStatement.php, method MSSQLCallableStatement::getBoolean()
getClob
in file MSSQLCallableStatement.php, method MSSQLCallableStatement::getClob()
getDatabaseInfo
in file MSSQLConnection.php, method MSSQLConnection::getDatabaseInfo()
getDate
in file MSSQLCallableStatement.php, method MSSQLCallableStatement::getDate()
getFloat
in file MSSQLCallableStatement.php, method MSSQLCallableStatement::getFloat()
getId
in file MSSQLIdGenerator.php, method MSSQLIdGenerator::getId()
getIdGenerator
in file MSSQLConnection.php, method MSSQLConnection::getIdGenerator()
getIdMethod
in file MSSQLIdGenerator.php, method MSSQLIdGenerator::getIdMethod()
getInt
in file MSSQLCallableStatement.php, method MSSQLCallableStatement::getInt()
getMoreResults
in file MSSQLStatement.php, method MSSQLStatement::getMoreResults()
    Gets next result set (if this behavior is supported by driver).
getMoreResults
in file MSSQLCallableStatement.php, method MSSQLCallableStatement::getMoreResults()
getNativeType
in file MSSQLTypes.php, method MSSQLTypes::getNativeType()
getRecordCount
in file MSSQLResultSet.php, method MSSQLResultSet::getRecordCount()
getResource
in file MSSQLCallableStatement.php, method MSSQLCallableStatement::getResource()
getString
in file MSSQLCallableStatement.php, method MSSQLCallableStatement::getString()
getTime
in file MSSQLCallableStatement.php, method MSSQLCallableStatement::getTime()
getTimestamp
in file MSSQLCallableStatement.php, method MSSQLCallableStatement::getTimestamp()
getType
in file MSSQLTypes.php, method MSSQLTypes::getType()
getUpdateCount
in file MSSQLConnection.php, method MSSQLConnection::getUpdateCount()
    Gets the number of rows affected by the last query.
top

i

isAfterInsert
in file MSSQLIdGenerator.php, method MSSQLIdGenerator::isAfterInsert()
isBeforeInsert
in file MSSQLIdGenerator.php, method MSSQLIdGenerator::isBeforeInsert()
top

m

MSSQLCallableStatement.php
procedural page MSSQLCallableStatement.php
MSSQLConnection.php
procedural page MSSQLConnection.php
MSSQLIdGenerator.php
procedural page MSSQLIdGenerator.php
MSSQLPreparedStatement.php
procedural page MSSQLPreparedStatement.php
MSSQLResultSet.php
procedural page MSSQLResultSet.php
MSSQLStatement.php
procedural page MSSQLStatement.php
MSSQLTypes.php
procedural page MSSQLTypes.php
MSSQLCallableStatement
in file MSSQLCallableStatement.php, class MSSQLCallableStatement
    MS SQL Server class to handle stored procedure execution.
MSSQLConnection
in file MSSQLConnection.php, class MSSQLConnection
    MS SQL Server implementation of Connection.
MSSQLIdGenerator
in file MSSQLIdGenerator.php, class MSSQLIdGenerator
    MSSQL IdGenerator implimenation.
MSSQLPreparedStatement
in file MSSQLPreparedStatement.php, class MSSQLPreparedStatement
    MSSQL specific PreparedStatement functions.
MSSQLResultSet
in file MSSQLResultSet.php, class MSSQLResultSet
    MSSQL implementation of ResultSet.
MSSQLStatement
in file MSSQLStatement.php, class MSSQLStatement
    Class that contains MSSQL functionality for Statements.
MSSQLTypes
in file MSSQLTypes.php, class MSSQLTypes
    MSSQL types / type map.
top

n

next
in file MSSQLResultSet.php, method MSSQLResultSet::next()
top

p

prepareCall
in file MSSQLConnection.php, method MSSQLConnection::prepareCall()
    Creates a CallableStatement object for calling database stored procedures.
prepareStatement
in file MSSQLConnection.php, method MSSQLConnection::prepareStatement()
top

r

registerOutParameter
in file MSSQLCallableStatement.php, method MSSQLCallableStatement::registerOutParameter()
rollback
in file MSSQLConnection.php, method MSSQLConnection::rollback()
    Roll back (undo) the current transaction.
top

s

seek
in file MSSQLResultSet.php, method MSSQLResultSet::seek()
setArray
in file MSSQLCallableStatement.php, method MSSQLCallableStatement::setArray()
setBlob
in file MSSQLPreparedStatement.php, method MSSQLPreparedStatement::setBlob()
    MSSQL-specific implementation of setBlob().
setBlob
in file MSSQLCallableStatement.php, method MSSQLCallableStatement::setBlob()
setBoolean
in file MSSQLCallableStatement.php, method MSSQLCallableStatement::setBoolean()
setClob
in file MSSQLCallableStatement.php, method MSSQLCallableStatement::setClob()
setDate
in file MSSQLCallableStatement.php, method MSSQLCallableStatement::setDate()
setFloat
in file MSSQLCallableStatement.php, method MSSQLCallableStatement::setFloat()
setInt
in file MSSQLCallableStatement.php, method MSSQLCallableStatement::setInt()
setNull
in file MSSQLCallableStatement.php, method MSSQLCallableStatement::setNull()
setString
in file MSSQLCallableStatement.php, method MSSQLCallableStatement::setString()
setTime
in file MSSQLCallableStatement.php, method MSSQLCallableStatement::setTime()
setTimestamp
in file MSSQLCallableStatement.php, method MSSQLCallableStatement::setTimestamp()
top

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