public function FrxPostgres::__destruct in Forena Reports 6
Same name and namespace in other branches
- 6.2 plugins/FrxPostgres.inc \FrxPostgres::__destruct()
- 7 plugins/FrxPostgres.inc \FrxPostgres::__destruct()
- 7.2 plugins/FrxPostgres.inc \FrxPostgres::__destruct()
- 7.3 plugins/FrxPostgres.inc \FrxPostgres::__destruct()
- 7.4 plugins/FrxPostgres.inc \FrxPostgres::__destruct()
Destructor - Closes database connections.
File
- plugins/
FrxPostgres.inc, line 169 - Oracle specific driver that takes advantage of oracles native XML support
Class
- FrxPostgres
- @file Oracle specific driver that takes advantage of oracles native XML support
Code
public function __destruct() {
$db = $this->db;
if ($db) {
pg_close($db);
}
}