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
getProperties()
Access the args
public
getProperties(
)
: IConnectionProperties
Return values
IConnectionProperties —args
close()
Close the database connection
public
close(
)
: void
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
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