diff --git a/system/database/drivers/sqlite/sqlite_utility.php b/system/database/drivers/sqlite/sqlite_utility.php
index 744ca3f..14b406a 100644
--- a/system/database/drivers/sqlite/sqlite_utility.php
+++ b/system/database/drivers/sqlite/sqlite_utility.php
@@ -32,7 +32,7 @@
 	 * @param	string	the database name
 	 * @return	bool
 	 */
-	function create_database()
+	function _create_database()
 	{
 		// In SQLite, a database is created when you connect to the database
 		return TRUE;
@@ -152,9 +152,7 @@
 	 */
 	function _field_data($table)
 	{
-		$sql = "SELECT * FROM ".$this->db->_escape_table($table)." LIMIT 1";
-		$query = $this->db->query($sql);
-		return $query->field_data();
+		return "SELECT * FROM ".$this->db->_escape_table($table)." LIMIT 1";
 	}