Home
last modified time | relevance | path

Searched refs:sqlite (Results 151 – 175 of 181) sorted by relevance

12345678

/plugin/sqlite/
H A Dhelper.php10 use dokuwiki\plugin\sqlite\SQLiteDB;
11 use dokuwiki\plugin\sqlite\Tools;
33 * DokuWiki Plugin sqlite (Helper Component)
53 msg('PDO SQLite support missing in this PHP install - The sqlite plugin will not work', -1);
81 return in_array('sqlite', \PDO::getAvailableDrivers());
H A DTools.php3 namespace dokuwiki\plugin\sqlite;
H A DQuerySaver.php3 namespace dokuwiki\plugin\sqlite;
17 $this->db = new SQLiteDB('sqlite', DOKU_PLUGIN . 'sqlite/db/');
H A DFunctions.php8 namespace dokuwiki\plugin\sqlite;
H A DSQLiteDB.php9 namespace dokuwiki\plugin\sqlite;
45 if (!$plugin_controller->isEnabled('sqlite')) {
48 if (!class_exists('pdo') || !in_array('sqlite', \PDO::getAvailableDrivers())) {
64 'sqlite:' . $file,
74 // See https://www.sqlite.org/wal.html
91 * @see https://www.sqlite.org/pragma.html#pragma_optimize
167 Logger::debug('[sqlite] slow query: (' . $time . 's)', [
434 'sqlite' => $this->helper,
/plugin/structpublish/meta/
H A DRevision.php5 use dokuwiki\plugin\sqlite\SQLiteDB;
17 protected $sqlite; variable in dokuwiki\\plugin\\structpublish\\meta\\Revision
/plugin/bez/mdl/
H A DFactory.php223 $this->model->sqlite->query('BEGIN TRANSACTION');
227 $this->model->sqlite->query('COMMIT TRANSACTION');
231 $this->model->sqlite->query('ROLLBACK');
/plugin/data-au/_test/
H A Daction_handle.test.php8 protected $pluginsEnabled = array('dataau, 'sqlite');
/plugin/sql2wiki/action/
H A Dsqlite.php3 use dokuwiki\plugin\sqlite\QuerySaver;
4 use dokuwiki\plugin\sqlite\SQLiteDB;
/plugin/struct/meta/
H A DSearch.php30 protected $sqlite; variable in dokuwiki\\plugin\\struct\\meta\\Search
71 $this->sqlite = $this->dbHelper->getDB();
76 return $this->sqlite;
471 $res = $this->sqlite->query($sql, $opts);
H A DSearchCloud.php110 $res = $this->sqlite->query($sql, $opts);
/plugin/mdpage/vendor/cebe/markdown/tests/markdown-data/
H A Dlist_items_with_undefined_ref.md6 …[SQLite3](http://sqlite.org/) database under the runtime directory. You can explicitly specify a d…
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Regression/GitHub/
H A D1351.phpt5 if (!extension_loaded('pdo') || !in_array('sqlite', PDO::getAvailableDrivers())) {
/plugin/sqlite/_test/
H A DGeneralTest.php3 namespace dokuwiki\plugin\sqlite\test;
8 * General tests for the sqlite plugin
34 $this->assertEquals('sqlite', $info['base']);
64 'Both ' . DOKU_PLUGIN . 'sqlite/conf/default.php and ' . DOKU_PLUGIN . 'sqlite/conf/metadata.php have to exist and contain the same keys.'
72 'Key $meta[\'' . $key . '\'] missing in ' . DOKU_PLUGIN . 'sqlite/conf/metadata.php'
80 'Key $conf[\'' . $key . '\'] missing in ' . DOKU_PLUGIN . 'sqlite/conf/default.php'
H A DHelperTest.php3 namespace dokuwiki\plugin\sqlite\test;
22 $this->pluginsEnabled[] = 'sqlite';
33 $SqliteHelper = plugin_load('helper', 'sqlite');
34 if (!$SqliteHelper->init("testdb", DOKU_PLUGIN . "sqlite/_test/db")) {
/plugin/dwcommits/
H A DREADME1 The plugin requires the sqlite plugin.
/plugin/sql2wiki/
H A DREADME3 Save results of sqlite queries into page syntax.
/plugin/aichat/Storage/
H A DSQLiteStorage.php9 use dokuwiki\plugin\sqlite\SQLiteDB;
/plugin/bibtex4dw/
H A DCHANGELOG.md32 * Optionally, the plugin can use an SQLite db (using the sqlite plugin). This speeds up things, particulary with large bibliography databases, and reduces latencies when rendering pages with references.
/plugin/struct/action/
H A Dentry.php30 protected $sqlite;
27 protected $sqlite; global() variable in action_plugin_struct_entry
/plugin/starred/
H A Dhelper.php4 use dokuwiki\plugin\sqlite\SQLiteDB;
/plugin/ireadit/syntax/
H A Dlist.php128 $sqlite = $db_helper->getDB();
/plugin/combo/syntax/
H A Diterator.php365 $sqlite = Sqlite::createOrGetSqlite();
418 $request = $sqlite
/plugin/combo/
H A Dcli.php417 $sqlite = Sqlite::createOrGetSqlite();
418 $request = $sqlite
/plugin/structtemplate/_vagrant/
H A DVagrantfile14 dw_extensions = "dev sqlite struct"

12345678