| Conditions | 5 |
| Paths | 6 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 31 | private static function cleanUpReference(CI_DB $db) |
||
| 32 | { |
||
| 33 | if ($db->dbdriver === 'oci8') { |
||
| 34 | if (is_resource($db->curs_id)) { |
||
| 35 | oci_free_statement($db->curs_id); |
||
| 36 | } |
||
| 37 | if (is_resource($db->stmt_id)) { |
||
| 38 | oci_free_statement($db->stmt_id); |
||
| 39 | } |
||
| 40 | } elseif ($db->dbdriver === 'pdo') { |
||
| 41 | $db->result_id = null; |
||
| 42 | } |
||
| 43 | } |
||
| 44 | } |
||
| 45 |