IConnectionFactory
Table of Contents
createConnection() | Connect to a database host | IDBConnection |
---|---|---|
getConnection() | Retrieve a database connection | IDBConnection |
close() | Close all connections. | void |
closeConnection() | Close a specific connection. | mixed |
Methods
createConnection()
Connect to a database host
public
createConnection(
[ $args :
IConnectionProperties
= null ]
[, $forceNew :
bool
= false ]
)
: IDBConnection
Parameters
- $args : IConnectionProperties = null
Connection arguments
- $forceNew : bool = false
Force a new connection
Tags
Return values
IDBConnection —db connection
getConnection()
Retrieve a database connection
public
getConnection(
[ $forceNew :
bool
= false ]
)
: IDBConnection
Parameters
- $forceNew : bool = false
Return values
IDBConnectionclose()
Close all connections.
public
close(
)
: void
This simply sets the internal reference to null.
closeConnection()
Close a specific connection.
public
closeConnection(
$conn :
IDBConnection
)
: mixed
This simply sets the internal reference to null.
Parameters
- $conn : IDBConnection