Automatic retreival of blob fields
diff --git a/system/database/drivers/interbase/interbase_result.php b/system/database/drivers/interbase/interbase_result.php
index 9093029..c5608d9 100644
--- a/system/database/drivers/interbase/interbase_result.php
+++ b/system/database/drivers/interbase/interbase_result.php
@@ -167,7 +167,7 @@
//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 @@
//Increment row count
$this->num_rows++;
- return @ibase_fetch_object($this->result_id);
+ return @ibase_fetch_object($this->result_id, IBASE_FETCH_BLOBS);
}
// --------------------------------------------------------------------