xref: /plugin/sqlite/README (revision 7bb92a7b8acbeea4655e30449ddd649979335f7b)
1Sqlite Plugin for DokuWiki
2
3A helper plugin to easily access a SQLite database.
4
5The plugin detects whether PHPs PDO extension is available otherwise it
6will look for the PHP sqlite extension.
7PDO supports sqlite3 only, and this plugin will look for db files with extension *.sqlite3
8The sqlite extension supports sqlite2 only, here this plugin will look for  *.sqlite .
9The admin interface shows a convert button when your database has the sqlite2 format
10and your installation has the both sqlite extensions else you should upgrade manually
11your database to sqlite3 format.
12
13Manually upgrade can by using commandline tools. Database files are in data/meta directory.
14    sqlite databasename.sqlite .dump | sqlite3 databasename.sqlite3
15More about this upgrade on http://www.sqlite.org/version3.html
16
17All documentation for this plugin can be found at
18http://www.dokuwiki.org/plugin:sqlite
19
20If you install this plugin manually, make sure it is installed in
21lib/plugins/sqlite/ - if the folder is called different it
22will not work!
23
24Please refer to http://www.dokuwiki.org/plugins for additional info
25on how to install plugins in DokuWiki.
26
27----
28