commit | 1082bddc0c065895a3b39607cb930f5a101f54fb | [log] [tgz] |
---|---|---|
author | admin <devnull@localhost> | Sun Aug 27 19:32:02 2006 +0000 |
committer | admin <devnull@localhost> | Sun Aug 27 19:32:02 2006 +0000 |
tree | 2c19cb7dcee82642f2a072bf9f432091fda4c8b1 | |
parent | 0d29605b1e774efd57ffd8f5ccc8eaec1e9ca576 [diff] [blame] |
diff --git a/system/drivers/DB_mysqli.php b/system/drivers/DB_mysqli.php index 75c01e7..fadcdd3 100644 --- a/system/drivers/DB_mysqli.php +++ b/system/drivers/DB_mysqli.php
@@ -88,7 +88,9 @@ function execute($sql) { $sql = $this->_prep_query($sql); - return @mysqli_query($this->conn_id, $sql); + $result = @mysqli_query($this->conn_id, $sql); + mysqli_next_result($this->conn_id); + return $result; } // --------------------------------------------------------------------