summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2012-01-16 12:05:23 +0100
committerAndrey Andreev <narf@bofh.bg>2012-01-16 12:05:23 +0100
commit8ae24c57a1240a5a5e3fbd5755227e5d42b75390 (patch)
treee79755605c4dc74cd5c357f694013b78f1e8ba38 /user_guide_src/source
parentfc514ca3578c59753e059fd6b8a2415424850535 (diff)
Add SQLite3 database driver
Diffstat (limited to 'user_guide_src/source')
-rw-r--r--user_guide_src/source/changelog.rst1
-rw-r--r--user_guide_src/source/database/configuration.rst2
-rw-r--r--user_guide_src/source/general/requirements.rst4
3 files changed, 4 insertions, 3 deletions
diff --git a/user_guide_src/source/changelog.rst b/user_guide_src/source/changelog.rst
index 48011f208..e554b57d3 100644
--- a/user_guide_src/source/changelog.rst
+++ b/user_guide_src/source/changelog.rst
@@ -47,6 +47,7 @@ Release Date: Not Released
get_compiled_insert(), get_compiled_update(), get_compiled_delete().
- Taking care of LIKE condition when used with MySQL UPDATE statement.
- Adding $escape parameter to the order_by function, this enables ordering by custom fields.
+ - Added support for SQLite3 database driver.
- Libraries
diff --git a/user_guide_src/source/database/configuration.rst b/user_guide_src/source/database/configuration.rst
index 4f88c25ab..7d3960f10 100644
--- a/user_guide_src/source/database/configuration.rst
+++ b/user_guide_src/source/database/configuration.rst
@@ -163,7 +163,7 @@ Explanation of Values:
====================== ==================================================================================================
.. note:: Depending on what database platform you are using (MySQL,
- Postgres, etc.) not all values will be needed. For example, when using
+ Postgre, etc.) not all values will be needed. For example, when using
SQLite you will not need to supply a username or password, and the
database name will be the path to your database file. The information
above assumes you are using MySQL.
diff --git a/user_guide_src/source/general/requirements.rst b/user_guide_src/source/general/requirements.rst
index 38623557d..15686d7a7 100644
--- a/user_guide_src/source/general/requirements.rst
+++ b/user_guide_src/source/general/requirements.rst
@@ -4,5 +4,5 @@ Server Requirements
- `PHP <http://www.php.net/>`_ version 5.1.6 or newer.
- A Database is required for most web application programming. Current
- supported databases are MySQL (4.1+), MySQLi, MS SQL, Postgres, Oracle,
- SQLite, ODBC and CUBRID. \ No newline at end of file
+ supported database drivers are MySQL (4.1+), MySQLi, MS SQL, Postgre,
+ Oracle, SQLite, SQLite3, ODBC and CUBRID.