Note: You are currently viewing documentation for Moodle 2.1. Up-to-date documentation for the latest stable version is available here: SQLite.

SQLite: Difference between revisions

From MoodleDocs
No edit summary
 
(3 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Installing Moodle}}
SQLite is a serverless SQL database implementation. Moodle has experimental support for it. It is not recommended for production Moodle sites.
SQLite is a serverless SQL database implementation. Moodle has experimental support for it. It is not recommended for production Moodle sites.


Line 7: Line 8:
== See Also ==
== See Also ==
* https://docs.moodle.org/dev/Student_projects/SQLite
* https://docs.moodle.org/dev/Student_projects/SQLite
* http://www.sqlite.org/


[[Category:SQL databases]]
[[Category:SQL databases]]

Latest revision as of 09:48, 20 February 2013

SQLite is a serverless SQL database implementation. Moodle has experimental support for it. It is not recommended for production Moodle sites.

Configuring Moodle for SQLite

No configuration is required. Simply set $CFG->dbtype in config.php to 'sqlite'. The other database parameters are not used. The database tables are stored in the 'moodledata' file area.

See Also