Fix previous commit
diff --git a/system/database/drivers/interbase/interbase_result.php b/system/database/drivers/interbase/interbase_result.php
index c7b40d2..de4a10b 100644
--- a/system/database/drivers/interbase/interbase_result.php
+++ b/system/database/drivers/interbase/interbase_result.php
@@ -236,7 +236,11 @@
 		// the result object to an array  if need be
 		if(count($this->result_object) > 0)
 		{
-			$this->result_array = (array)$this->result_object;
+			foreach($this->result_object as $obj)
+			{
+				$this->result_array[] = (array)$obj;
+			}
+		
 			return $this->result_array;
 		}