The sqlite plugin is a helper plugin for various other plugins.
Important: because of a bug in DokuWiki you can only use one plugin using the sqlite plugin for DokuWiki versions prior to 2010-03-29!
Download and install the plugin using the Plugin Manager using the following URL:
Refer to Plugins on how to install plugins manually.
The plugin comes with a simple admin interface where you can run your own SQL queries against any of the available databases.
Available databases (data/meta/*.sqlite
) are show in the table of contents. Select one and you can submit your own queries.
To use this helper plugin in your own plugins, load it and call the init() function to connect to the database. Make sure you check if the plugin was loaded correctly and if the init() function ran without error, before executing your own code.
// load the helper plugin $sqlite = plugin_load('helper', 'sqlite'); if(!$sqlite){ msg('This plugin requires the sqlite plugin. Please install it'); return; } // initialize the database connection if(!$sqlite->init('myplugin',DOKU_PLUGIN.'myplugin/db/')){ return; } // use the plugin $res = $sqlite->query("SELECT * FROM mytable"); $arr = res2arr($res); print_r($arr);
Initializes and opens the database. Needs to be called right after loading this helper plugin
$plugin->init($dbname,$updatedir);
Execute a query with the given parameters.
Takes care of escaping
$plugin->query($sql[,arg1[,arg2[...]]]);
Returns a complete result set as array
$plugin->res2arr($res){
Return the wanted row from a given result set as associative array
$plugin->res2row($res,$rownum=0){
Join the given values and quote them for SQL insertion
$plugin->quote_and_join($vals,$sep=',');
Run sqlite_escape_string on the given string and surround it with quotes
$plugin->quote_string($string);
Your plugin will need to create a database schema and maybe fill it with some initial data. When you release new versions of your plugin you might need to update the schema. The sqlite plugin provides a simple mechanism to do so.
This is all handled within the init()
function. The second parameter has to point to a directory where your SQL files are located. Each file correspondents to a certain database version. Version 1 is the very first setup that is done when the database is created. Each subsequent version is then applied above the previous version.
The number of the most recent version has to be stored in a file called latest.version
. The update files it self have to be named updateXXXX.sql
where XXXX is a zeropadded 4 digit number, starting with 0001
.
The update mechanism will wrap the execution of each update in a transaction, you need not to do that yourself. If an update fails, the transaction is rolled back and the update is aborted.
The sqlite plugin keeps track of the version a database is in currently using a table called opt
. You may not have a table named like that!
The plugin provides a few additional features over the standard SQLite 2 syntax.
The plugin supports a simplified ALTER TABLE
syntax. This is probably most useful in the update mechanism. The plugin emulates the alter table call by copying the affected data to a temporary table and dropping, recreating and refilling the original table. When used outside the update mechanism, it is recommended to wrap the call in a transaction.
ALTER TABLE tbl_name alter_specification [, alter_specification] ... alter_specification: ADD column_definition | DROP column_definition | CHANGE old_col_name column_definition column_definition: same as for create table statements
Examples:
ALTER TABLE employees ADD first_name, ADD last_name ALTER TABLE invoices ADD note text, CHANGE idate invoice_date DATETIME ALTER TABLE foo DROP bar, ADD bar2 INTEGER
The GROUP_CONCAT function is a copy of the same function as defined in MySQL. add more info.