sources/database/Db-mysql.class.php 1 location
|
@@ 278-282 (lines=5) @@
|
| 275 |
|
} |
| 276 |
|
|
| 277 |
|
// Debugging. |
| 278 |
|
if ($db_show_debug === true) |
| 279 |
|
{ |
| 280 |
|
$db_cache['t'] = microtime(true) - $st; |
| 281 |
|
$debug->db_query($db_cache); |
| 282 |
|
} |
| 283 |
|
|
| 284 |
|
return $ret; |
| 285 |
|
} |
sources/database/Db-postgresql.class.php 1 location
|
@@ 326-330 (lines=5) @@
|
| 323 |
|
$this->db_transaction('commit', $connection); |
| 324 |
|
|
| 325 |
|
// Debugging. |
| 326 |
|
if ($db_show_debug === true) |
| 327 |
|
{ |
| 328 |
|
$db_cache['t'] = microtime(true) - $st; |
| 329 |
|
$debug->db_query($db_cache); |
| 330 |
|
} |
| 331 |
|
|
| 332 |
|
return $this->_db_last_result; |
| 333 |
|
} |