summaryrefslogtreecommitdiffstats
path: root/system/database/drivers/interbase
diff options
context:
space:
mode:
authorTimothy Warren <tim@timshomepage.net>2012-02-17 23:42:34 +0100
committerTimothy Warren <tim@timshomepage.net>2012-02-17 23:42:34 +0100
commit0dcfd778350ce397b034f44e34397ea255b35809 (patch)
treea6ab652b8339d02a86b007ec097a4875b67dd01b /system/database/drivers/interbase
parentc2b712eb5230fc247ef81b4b88de789b9dd08cb4 (diff)
Automatic retreival of blob fields
Diffstat (limited to 'system/database/drivers/interbase')
-rw-r--r--system/database/drivers/interbase/interbase_result.php4
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);
}
// --------------------------------------------------------------------