summaryrefslogtreecommitdiffstats
path: root/system/database/drivers/sqlite3/sqlite3_result.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2012-04-12 13:30:05 +0200
committerAndrey Andreev <narf@bofh.bg>2012-04-12 13:30:05 +0200
commit8f3566fffcb9015ba53dbf52922fc5724ffa6045 (patch)
tree5398718eb3e03534bc0364cd46634713087eceec /system/database/drivers/sqlite3/sqlite3_result.php
parent918be7963f6fa3461d612ea7ca4c9774c12f9da5 (diff)
Changed default CI_DB_result::_data_seek() return value to FALSE and removed the method from drivers that don't support it
Diffstat (limited to 'system/database/drivers/sqlite3/sqlite3_result.php')
-rw-r--r--system/database/drivers/sqlite3/sqlite3_result.php4
1 files changed, 0 insertions, 4 deletions
diff --git a/system/database/drivers/sqlite3/sqlite3_result.php b/system/database/drivers/sqlite3/sqlite3_result.php
index 64482e379..d83d6b2cd 100644
--- a/system/database/drivers/sqlite3/sqlite3_result.php
+++ b/system/database/drivers/sqlite3/sqlite3_result.php
@@ -198,8 +198,6 @@ class CI_DB_sqlite3_result extends CI_DB_result {
$this->row_data[$row_index++] = $row;
}
- // Un-comment the following line, in case it becomes needed
- // $this->_data_seek();
return $this->result_array = $this->row_data;
}
@@ -266,8 +264,6 @@ class CI_DB_sqlite3_result extends CI_DB_result {
$this->num_rows = count($this->result_object);
}
- // Un-comment the following line, in case it becomes needed
- // $this->_data_seek();
return $this->result_object;
}