diff options
author | Timothy Warren <tim@timshomepage.net> | 2012-02-17 23:42:34 +0100 |
---|---|---|
committer | Timothy Warren <tim@timshomepage.net> | 2012-02-17 23:42:34 +0100 |
commit | 0dcfd778350ce397b034f44e34397ea255b35809 (patch) | |
tree | a6ab652b8339d02a86b007ec097a4875b67dd01b /system/database/drivers/interbase/interbase_result.php | |
parent | c2b712eb5230fc247ef81b4b88de789b9dd08cb4 (diff) |
Automatic retreival of blob fields
Diffstat (limited to 'system/database/drivers/interbase/interbase_result.php')
-rw-r--r-- | system/database/drivers/interbase/interbase_result.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/database/drivers/interbase/interbase_result.php b/system/database/drivers/interbase/interbase_result.php index 9093029dd..c5608d977 100644 --- a/system/database/drivers/interbase/interbase_result.php +++ b/system/database/drivers/interbase/interbase_result.php @@ -167,7 +167,7 @@ class CI_DB_interbase_result extends CI_DB_result { //Increment row count $this->num_rows++; - return @ibase_fetch_assoc($this->result_id); + return @ibase_fetch_assoc($this->result_id, IBASE_FETCH_BLOBS); } // -------------------------------------------------------------------- @@ -184,7 +184,7 @@ class CI_DB_interbase_result extends CI_DB_result { //Increment row count $this->num_rows++; - return @ibase_fetch_object($this->result_id); + return @ibase_fetch_object($this->result_id, IBASE_FETCH_BLOBS); } // -------------------------------------------------------------------- |