• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

.github/workflows/27-Aug-2025-129

_test/27-Aug-2025-538370

db/27-Aug-2025-97

helper/27-Aug-2025-5021

lang/27-Aug-2025-515325

Functions.phpD27-Aug-20254.8 KiB17584

QuerySaver.phpD27-Aug-20252.1 KiB8652

READMED27-Aug-20251.7 KiB4429

SQLiteDB.phpD27-Aug-202514.8 KiB527293

Tools.phpD27-Aug-20252.4 KiB8656

admin.phpD27-Aug-20259.9 KiB324239

admin.svgD27-Aug-2025584 11

db.sqlD27-Aug-2025123 42

deleted.filesD27-Aug-2025332 1311

helper.phpD27-Aug-202510.3 KiB415190

plugin.info.txtD27-Aug-2025216 98

style.lessD27-Aug-2025826 4637

README

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.
7
8PDO supports sqlite3 only, and this plugin will look for db files with extension *.sqlite3
9The sqlite extension supports sqlite2 only, here this plugin will look for  *.sqlite files.
10
11If both drivers are available, the admin allows to convert old sqlite2 format databases to
12the new format. This should be done when upgrading from an older version. Manual upgrades
13can be done through commandline tools. Database files can be found in the data/meta directory.
14
15    sqlite databasename.sqlite .dump | sqlite3 databasename.sqlite3
16
17More about this upgrade on http://www.sqlite.org/version3.html
18
19All documentation for this plugin can be found at
20http://www.dokuwiki.org/plugin:sqlite
21
22If you install this plugin manually, make sure it is installed in
23lib/plugins/sqlite/ - if the folder is called different it
24will not work!
25
26Please refer to http://www.dokuwiki.org/plugins for additional info
27on how to install plugins in DokuWiki.
28
29----
30
31Copyright (C) Andreas Gohr <dokuwiki@cosmocode.de>,
32              Gerrit Uitslag <klapinklapin@gmail.com>
33
34This program is free software; you can redistribute it and/or modify
35it under the terms of the GNU General Public License as published by
36the Free Software Foundation; version 2 of the License
37
38This program is distributed in the hope that it will be useful,
39but WITHOUT ANY WARRANTY; without even the implied warranty of
40MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
41GNU General Public License for more details.
42
43See the COPYING file in your DokuWiki folder for details
44