diff --git a/system/database/DB_active_rec.php b/system/database/DB_active_rec.php
index 1fa4f95..8db6161 100644
--- a/system/database/DB_active_rec.php
+++ b/system/database/DB_active_rec.php
@@ -804,7 +804,7 @@
/**
* Object to Array
*
- * Takes an object as input and convers the class variables to array key/vals
+ * Takes an object as input and converts the class variables to array key/vals
*
* @access public
* @param object
diff --git a/system/database/DB_cache.php b/system/database/DB_cache.php
index aee5ce6..b469b0e 100644
--- a/system/database/DB_cache.php
+++ b/system/database/DB_cache.php
@@ -82,7 +82,7 @@
// --------------------------------------------------------------------
/**
- * Retreive a cached query
+ * Retrieve a cached query
*
* The URI being requested will become the name of the cache sub-folder.
* An MD5 hash of the SQL statement will become the cache file name
diff --git a/system/database/DB_driver.php b/system/database/DB_driver.php
index a24bd20..8a7b88f 100644
--- a/system/database/DB_driver.php
+++ b/system/database/DB_driver.php
@@ -368,7 +368,7 @@
/**
* Simple Query
- * This is a simiplified version of the query() function. Internally
+ * This is a simplified version of the query() function. Internally
* we only use it when running transaction commands since they do
* not require all the features of the main query() function.
*
@@ -535,7 +535,7 @@
* Calculate the aggregate query elapsed time
*
* @access public
- * @param intiger The number of decimal places
+ * @param integer The number of decimal places
* @return integer
*/
function elapsed_time($decimals = 6)
@@ -1021,7 +1021,7 @@
* @param string the error message
* @param string any "swap" values
* @param boolean whether to localize the message
- * @return string sends the application/errror_db.php template
+ * @return string sends the application/error_db.php template
*/
function display_error($error = '', $swap = '', $native = FALSE)
{
diff --git a/system/database/DB_result.php b/system/database/DB_result.php
index 4e8c4fc..d02bfb9 100644
--- a/system/database/DB_result.php
+++ b/system/database/DB_result.php
@@ -63,7 +63,7 @@
return $this->result_object;
}
- if ($this->num_rows == 0)
+ if ($this->numerous == 0)
{
return array();
}
diff --git a/system/database/drivers/mssql/mssql_driver.php b/system/database/drivers/mssql/mssql_driver.php
index cb2f48d..4dc8792 100644
--- a/system/database/drivers/mssql/mssql_driver.php
+++ b/system/database/drivers/mssql/mssql_driver.php
@@ -277,7 +277,7 @@
// --------------------------------------------------------------------
/**
- * List columnn query
+ * List column query
*
* Generates a platform-specific query string so that the column names can be fetched
*
diff --git a/system/database/drivers/mysql/mysql_driver.php b/system/database/drivers/mysql/mysql_driver.php
index 253627c..20311ff 100644
--- a/system/database/drivers/mysql/mysql_driver.php
+++ b/system/database/drivers/mysql/mysql_driver.php
@@ -311,7 +311,7 @@
// --------------------------------------------------------------------
/**
- * Show columnn query
+ * Show column query
*
* Generates a platform-specific query string so that the column names can be fetched
*
diff --git a/system/database/drivers/mysqli/mysqli_driver.php b/system/database/drivers/mysqli/mysqli_driver.php
index 4fd9f3a..ea2adbe 100644
--- a/system/database/drivers/mysqli/mysqli_driver.php
+++ b/system/database/drivers/mysqli/mysqli_driver.php
@@ -303,7 +303,7 @@
// --------------------------------------------------------------------
/**
- * Show columnn query
+ * Show column query
*
* Generates a platform-specific query string so that the column names can be fetched
*
diff --git a/system/database/drivers/oci8/oci8_driver.php b/system/database/drivers/oci8/oci8_driver.php
index 794405a..4f5470c 100644
--- a/system/database/drivers/oci8/oci8_driver.php
+++ b/system/database/drivers/oci8/oci8_driver.php
@@ -418,7 +418,7 @@
// --------------------------------------------------------------------
/**
- * Show columnn query
+ * Show column query
*
* Generates a platform-specific query string so that the column names can be fetched
*
diff --git a/system/database/drivers/odbc/odbc_driver.php b/system/database/drivers/odbc/odbc_driver.php
index 4bd6e11..17a6dfb 100644
--- a/system/database/drivers/odbc/odbc_driver.php
+++ b/system/database/drivers/odbc/odbc_driver.php
@@ -278,7 +278,7 @@
// --------------------------------------------------------------------
/**
- * Show columnn query
+ * Show column query
*
* Generates a platform-specific query string so that the column names can be fetched
*
diff --git a/system/database/drivers/postgre/postgre_driver.php b/system/database/drivers/postgre/postgre_driver.php
index 340d650..f74e652 100644
--- a/system/database/drivers/postgre/postgre_driver.php
+++ b/system/database/drivers/postgre/postgre_driver.php
@@ -305,7 +305,7 @@
// --------------------------------------------------------------------
/**
- * Show columnn query
+ * Show column query
*
* Generates a platform-specific query string so that the column names can be fetched
*
diff --git a/system/database/drivers/sqlite/sqlite_driver.php b/system/database/drivers/sqlite/sqlite_driver.php
index 9da50b6..fd9fd2c 100644
--- a/system/database/drivers/sqlite/sqlite_driver.php
+++ b/system/database/drivers/sqlite/sqlite_driver.php
@@ -297,7 +297,7 @@
// --------------------------------------------------------------------
/**
- * Show columnn query
+ * Show column query
*
* Generates a platform-specific query string so that the column names can be fetched
*