Home
last modified time | relevance | path

Searched refs:sqlite (Results 176 – 181 of 181) sorted by path

12345678

/plugin/top/
H A Dhelper.php15 protected $sqlite = null; variable in helper_plugin_top
23 if(!is_null($this->sqlite)) return $this->sqlite;
26 if(!$this->sqlite) {
28 $this->sqlite = null;
35 $this->sqlite = null;
39 return $this->sqlite;
48 $sqlite = $this->getDBHelper();
49 if(!$sqlite) return;
70 $sqlite->res_close($res);
81 if(!$sqlite) return array();
[all …]
/plugin/watchcycle/
H A Daction.php126 /** @var \helper_plugin_sqlite $sqlite */
127 $sqlite = plugin_load('helper', 'watchcycle_db')->getDB();
128 if (!$sqlite) {
129 msg($this->getLang('error sqlite missing'), -1);
139 $res = $sqlite->query('SELECT * FROM watchcycle WHERE page=?', $page);
140 $row = $sqlite->res2row($res);
155 $sqlite->storeEntry('watchcycle', $entry);
181 $sqlite->query("UPDATE watchcycle SET $set WHERE page=?", $toupdate);
187 $sqlite->query('DELETE FROM watchcycle WHERE page=?', $page);
H A Dadmin.php49 /** @var \helper_plugin_sqlite $sqlite */
50 $sqlite = plugin_load('helper', 'watchcycle_db')->getDB();
119 $res = $sqlite->query($q, $q_args);
120 while ($row = $sqlite->res2row($res)) {
/plugin/watchcycle/helper/
H A Ddb.php18 protected $sqlite; variable in helper_plugin_watchcycle_db
35 /** @var helper_plugin_sqlite $sqlite */
36 $this->sqlite = plugin_load('helper', 'sqlite');
37 if (!$this->sqlite) {
39 throw new \Exception('Couldn\'t load sqlite.');
44 if ($this->sqlite->getAdapter()->getName() != DOKU_EXT_PDO) {
46 throw new \Exception('Couldn\'t load PDO sqlite.');
48 $this->sqlite = null;
51 $this->sqlite
[all...]
/plugin/webdav/vendor/sabre/dav/
H A DCHANGELOG.md835 * Fixed: #456: Issue in sqlite migration script.
1983 * Added: Example sql for auth, caldav, locks for sqlite.
/plugin/webdavclient/
H A Dhelper.php161 if(!$sqlite)
179 if(!$sqlite)
197 if(!$sqlite)
214 if(!$sqlite)
252 if(!$sqlite)
368 if(!$sqlite)
420 if(!$sqlite)
458 if(!$sqlite)
477 if(!$sqlite)
494 if(!$sqlite)
[all …]

12345678