Many new Active Record functions, and another whack of stuff
diff --git a/system/database/drivers/sqlite/sqlite_result.php b/system/database/drivers/sqlite/sqlite_result.php
index caa1678..0939c87 100644
--- a/system/database/drivers/sqlite/sqlite_result.php
+++ b/system/database/drivers/sqlite/sqlite_result.php
@@ -167,7 +167,14 @@
 		}

 		else

 		{

-			return $this->_fetch_assoc();

+			$arr = sqlite_fetch_array($this->result_id, SQLITE_ASSOC);

+			if (is_array($arr))

+			{

+				$obj = (object) $arr;

+				return $obj;

+			} else {

+				return NULL;

+			} 

 		}

 	}