Home
last modified time | relevance | path

Searched refs:sqlite (Results 51 – 75 of 181) sorted by last modified time

12345678

/plugin/bez/mdl/
H A DThreadFactory.php14 $r = $this->model->sqlite->query('SELECT create_date FROM thread ORDER BY id LIMIT 1');
15 $date = $this->model->sqlite->res2single($r);
42 $r = $this->model->sqlite->query($sql, $from, $to);
53 $r = $this->model->sqlite->query($sql);
66 $r = $this->model->sqlite->query($sql, $from, $to);
71 $r = $this->model->sqlite->query($sql);
90 $r = $this->model->sqlite->query($sql, $from, $to, $from, $to);
97 $r = $this->model->sqlite->query($sql);
128 $r = $this->model->sqlite->query($sql, $from, $to);
147 $r = $this->model->sqlite
[all...]
H A DThread_commentFactory.php77 $this->model->sqlite->query('UPDATE task SET type=? WHERE thread_comment_id=?',
122 $r = $this->model->sqlite->query($sql, $from, $to);
128 $r = $this->model->sqlite->query($sql);
/plugin/bez/struct/
H A DBezType.php46 /** @var helper_plugin_sqlite $sqlite */
47 $sqlite = plugin_load('helper', 'bez_db')->getDB();
48 $res = $sqlite->query("SELECT thread_id FROM thread_comment WHERE id=?", $id);
60 /** @var helper_plugin_sqlite $sqlite */
61 $sqlite = plugin_load('helper', 'bez_db')->getDB();
62 $res = $sqlite->query("SELECT task_id FROM task_comment WHERE id=?", $id);
94 /** @var helper_plugin_sqlite $sqlite */
95 $sqlite = plugin_load('helper', 'bez_db')->getDB();
96 $res = $sqlite->query("SELECT COUNT(*) FROM $table WHERE id=?", $id);
132 /** @var helper_plugin_sqlite $sqlite */
[all...]
/plugin/bez/syntax/
H A Dqlink.php34 /** @var helper_plugin_sqlite $sqlite */
35 $sqlite = plugin_load('helper', 'bez_db')->getDB();
36 $res = $sqlite->query("SELECT thread_id FROM thread_comment WHERE id=?", $id);
48 /** @var helper_plugin_sqlite $sqlite */
49 $sqlite = plugin_load('helper', 'bez_db')->getDB();
50 $res = $sqlite->query("SELECT task_id FROM task_comment WHERE id=?", $id);
/plugin/bez/action/
H A Dmigration.php31 if ($event->data['sqlite']->getAdapter()->getDbName() !== 'b3p') {
46 /** @var helper_plugin_sqlite $sqlite */
47 $sqlite = $data['sqlite'];
58 $db = $sqlite->getAdapter()->getPdo();
79 /** @var helper_plugin_sqlite $sqlite */
80 $sqlite = $data['sqlite'];
91 $db = $sqlite->getAdapter()->getPdo();
113 * @param helper_plugin_sqlite $sqlite
[all...]
/plugin/bez/helper/
H A Ddb.php14 protected $sqlite;
29 /** @var helper_plugin_sqlite $sqlite */
30 $this->sqlite = plugin_load('helper', 'sqlite');
31 if(!$this->sqlite) {
32 if(defined('DOKU_UNITTEST')) throw new \Exception('Couldn\'t load sqlite.');
36 if($this->sqlite->getAdapter()->getName() != DOKU_EXT_PDO) {
37 if(defined('DOKU_UNITTEST')) throw new \Exception('Couldn\'t load PDO sqlite.');
38 $this->sqlite = null;
41 $this->sqlite
16 protected $sqlite; global() variable in helper_plugin_bez_db
[all...]
/plugin/tagging/
H A DREADME13 This plugin requires the sqlite plugin!
14 See https://www.dokuwiki.org/plugin:sqlite
/plugin/structtasks/
H A Drequirements.txt2 https://github.com/cosmocode/sqlite.git lib/plugins/sqlite
/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/bibtex4dw/lib/
H A Dbibtexparser.php37 public static $sqlite = array(); variable in bibtexparser_plugin_bibtex4dw
269 public function parseBibliography($sqlite = false) argument
317 if ($sqlite) {
345 if ($sqlite) {
385 public function parse($sqlite = false)
418 if ($sqlite) {
526 $stringCallback = fn($key, $value) => $this->sqlite->query("INSERT OR REPLACE INTO strings (string, entry) VALUES (?,?)", $key, $value);
527 $bibItemCallback = fn($key, $value) => $this->sqlite->query("INSERT OR REPLACE INTO bibtex (key, entry) VALUES (?,?)", $key, $value);
548 $pdo = $this->sqlite->getAdapter()->getPdo();
655 if (!empty($this->sqlite)) {
368 parse($sqlite = false) global() argument
[all...]
H A Dbibtexrender.php25 public static $sqlite = array(); variable in bibtexrender_plugin_bibtex4dw
33 'sqlite' => false,
92 $this->_conf['sqlite'] = $this->plugin->getConf('sqlite');
98 if ($this->_conf['sqlite']) {
99 $this->sqlite = plugin_load('helper', 'sqlite');
100 if(!$this->sqlite){
101 msg('You asked for using the sqlite plugin but it is not installed. Please install it', -1);
105 if(!$this->sqlite
[all...]
/plugin/combo/syntax/
H A Diterator.php365 $sqlite = Sqlite::createOrGetSqlite();
418 $request = $sqlite
/plugin/combo/ComboStrap/Meta/Field/
H A DAliases.php163 $sqlite = Sqlite::createOrGetSqlite();
171 $request = $sqlite
202 $request = $sqlite
H A DBacklinkCount.php89 $sqlite = Sqlite::createOrGetSqlite();
91 $request = $sqlite
/plugin/combo/grammar/
H A DPageSql.g498 // https://www.sqlite.org/lang_expr.html
/plugin/combo/ComboStrap/
H A DCacheLog.php112 $sqlite = Sqlite::createOrGetBackendSqlite();
113 if ($sqlite === null) {
124 $request = $sqlite->createRequest()
H A DDatabasePageRow.php78 private $sqlite; variable in ComboStrap\\DatabasePageRow
94 $this->sqlite = Sqlite::createOrGetSqlite();
222 * @throws ExceptionSqliteNotAvailable - if there is no sqlite available
408 $request = $this->sqlite
433 // on an empty string / null (for sqlite)
606 $request = $this->sqlite
683 $request = $this->sqlite
965 $request = $this->sqlite
1045 $request = $this->sqlite
1150 $request = $this->sqlite
[all...]
H A DSqlite.php17 use dokuwiki\plugin\sqlite\SQLiteDB;
59 * @return Sqlite $sqlite
70 * @var Sqlite $sqlite
73 * sqlite is stored globally
75 * sqlite file.
83 * that you replicate using a new sqlite instance each time,
87 $sqlite = $executionContext->getRuntimeObject($sqliteExecutionObjectIdentifier);
89 $sqlite = null;
92 if ($sqlite !== null) {
93 $res = $sqlite
[all...]
H A DSqliteRequest.php20 private $sqlite;
53 * @param Sqlite $sqlite
55 public function __construct(Sqlite $sqlite)
57 $this->sqlite = $sqlite;
58 $this->sqlitePlugin = $sqlite->getSqlitePlugin();
151 return $this->sqlite;
12 private $sqlite; global() variable in ComboStrap\\SqliteRequest
45 __construct(Sqlite $sqlite) global() argument
H A DSqliteResult.php15 private $sqlite;
24 public function __construct(SqliteRequest $sqlite, $res)
26 $this->sqlite = $sqlite;
28 $this->sqlitePlugin = $this->sqlite->getSqliteConnection()->getSqlitePlugin();
58 * /home/runner/work/combo/combo/lib/plugins/sqlite/classes/adapter_pdosqlite.php:125
13 private $sqlite; global() variable in ComboStrap\\SqliteResult
22 __construct(SqliteRequest $sqlite, $res) global() argument
H A DEvent.php60 $sqlite = Sqlite::createOrGetBackendSqlite();
72 $version = $sqlite->getVersion();
76 // https://www.sqlite.org/lang_returning.html
80 // https://www.sqlite.org/lang_delete.html#optional_limit_and_order_by_clauses
81 if ($sqlite->hasOption("SQLITE_ENABLE_UPDATE_DELETE_LIMIT")) {
84 $request = $sqlite->createRequest()
112 $request = $sqlite->createRequest()
132 $request = $sqlite->createRequest()
193 $sqlite = Sqlite::createOrGetBackendSqlite();
214 $request = $sqlite
[all...]
H A DSearch.php57 $sqlite = Sqlite::createOrGetSqlite();
62 $request = $sqlite
/plugin/combo/
H A Dcli.php417 $sqlite = Sqlite::createOrGetSqlite();
418 $request = $sqlite
H A Drequirements.txt2 https://github.com/cosmocode/sqlite.git lib/plugins/sqlite
/plugin/combo/ComboStrap/Meta/Store/
H A DMetadataDbStore.php40 private Sqlite $sqlite; variable in ComboStrap\\Meta\\Store\\MetadataDbStore
59 // sqlite in the constructor to handle only one sqlite exception
60 $this->sqlite = Sqlite::createOrGetSqlite();
186 $request = $this->sqlite
259 $res = $this->sqlite
278 // there is no notion of commit in the sqlite plugin

12345678