// load the helper plugin /** @var helper_plugin_sqlite $sqlite */ $sqlite = plugin_load('helper', 'sqlite'); if(!$sqlite){ msg('This plugin requires the sqlite plugin. Please install it', -1); return; } // initialize the database connection if(!$sqlite->init('pf2wiki',DOKU_PLUGIN.'starocotes')){ return; } // use the plugin $res = $sqlite->query("select * from data_aktion"); $arr = $sqlite->res2arr($res); foreach ($arr as $val) { var_dump($val); }