Documentation

IPDOConnection extends IPDO

Table of Contents

getProperties() Access the args IConnectionProperties
close() Close the database connection void
selectdb() Select the current database void
curdb() Returns the current database being used string
multiSelect() Execute a sql statement that has multiple result sets ie: a stored procedure that has multiple selects, or one of those snazzy subquery statements Generator
getLastStatement() Retrieve the last sql statement that was used string
getLastOpts() Retrieve the last set of options used array
setAutoCommit() Set auto commit if supported by the driver. void

Methods

selectdb()

Select the current database

public selectdb( $db : string ) : void
Parameters
$db : string

Database name

curdb()

Returns the current database being used

public curdb( ) : string
Return values
string

Current database name

multiSelect()

Execute a sql statement that has multiple result sets ie: a stored procedure that has multiple selects, or one of those snazzy subquery statements

public multiSelect( $sql : string ) : Generator
Parameters
$sql : string

SQL statement to execute

Tags
throws
DBException

if there is one

Return values
Generator

array results

getLastStatement()

Retrieve the last sql statement that was used

public getLastStatement( ) : string
Return values
string

last statement

getLastOpts()

Retrieve the last set of options used

public getLastOpts( ) : array
Return values
array

opts

setAutoCommit()

Set auto commit if supported by the driver.

public setAutoCommit( $on : bool ) : void
Parameters
$on : bool

on or off

Search results