Home
last modified time | relevance | path

Searched refs:sqlite (Results 101 – 125 of 181) sorted by relevance

12345678

/plugin/data-au/
H A Drequirements.txt2 https://github.com/cosmocode/sqlite.git lib/plugins/sqlite
/plugin/swarmwebhook/
H A Drequirements.txt2 https://github.com/cosmocode/sqlite.git lib/plugins/sqlite
/plugin/data/
H A Drequirements.txt2 https://github.com/cosmocode/sqlite.git lib/plugins/sqlite
/plugin/structtasks/
H A Drequirements.txt2 https://github.com/cosmocode/sqlite.git lib/plugins/sqlite
/plugin/structpublish/
H A Drequirements.txt2 https://github.com/cosmocode/sqlite.git lib/plugins/sqlite
/plugin/dwcommits/
H A Dhelper.php19 private $sqlite; variable in helper_plugin_dwcommits
38 $this->sqlite = 0;
165 $this->sqlite = $db;
373 $results = $this->sqlite->query("select count(*) from git_commits");
436 $results = $this->sqlite->query("select count(*) from git_commits");
510 $arr = $this->sqlite->res2arr($res);
723 if(method_exists($this->sqlite,res2single)){
724 return $this->sqlite->res2single($res);
726 $arr = $this->sqlite->res2row($res);
839 $this->sqlite->query("DROP TABLE git_commits");
[all …]
/plugin/datagraph/
H A Drequirements.txt1 https://github.com/cosmocode/sqlite.git lib/plugins/sqlite
H A Dsyntax.php15 $sqlite = plugin_load('helper', 'sqlite');
16 if(!$sqlite){
21 if(! $sqlite->init('data', dirname(__FILE__) . '/db/')){
25 $this->db = $sqlite;
/plugin/data-graph/
H A Drequirements.txt1 https://github.com/cosmocode/sqlite.git lib/plugins/sqlite
H A Dsyntax.php15 $sqlite = plugin_load('helper', 'sqlite');
16 if(!$sqlite){
21 if(! $sqlite->init('data', dirname(__FILE__) . '/db/')){
25 $this->db = $sqlite;
/plugin/watchcycle/
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/ireadit/action/
H A Dmove.php32 $sqlite = $db_helper->getDB();
39 $sqlite->query('UPDATE ireadit SET page=? WHERE page=?', $new, $old);
/plugin/approve/action/
H A Dmove.php30 $sqlite = $db_helper->getDB();
40 $sqlite->query('UPDATE revision SET page=? WHERE page=?', $new, $old);
H A Dcache.php44 $sqlite = $db_helper->getDB();
45 $cache->depends['files'][] = $sqlite->getAdapter()->getDbFile();
/plugin/struct/meta/
H A DAccessTableGlobal.php28 $this->sqlite->query($sql, $this->rid);
30 $this->sqlite->query($sql, $this->rid);
119 $this->rid = $this->sqlite->queryValue("SELECT rid FROM $this->stable WHERE ROWID = last_insert_rowid()");
/plugin/struct/
H A Drequirements.txt2 https://github.com/cosmocode/sqlite.git lib/plugins/sqlite
/plugin/telleveryone/action/
H A Dmigration.php49 $sqlite = $data['sqlite'];
52 $sqlite->storeEntry('config', [
/plugin/notification/action/
H A Dmigration.php50 $sqlite = $db_helper->getDB();
53 $sqlite->storeEntry('cron_check',
/plugin/combo/
H A Drequirements.txt2 https://github.com/cosmocode/sqlite.git lib/plugins/sqlite
/plugin/data-au/syntax/
H A Dtable.php245 $sqlite = $this->dthlp->_getDB();
246 if(!$sqlite) return false;
260 $res = $sqlite->query($dataau['sql']);
262 $rows = $sqlite->res2arr($res);
571 $sqlite = $this->dthlp->_getDB();
572 if(!$sqlite) return false;
591 $from .= ' AND ' . $tables[$key] . ".key = " . $sqlite->quote_string($key);
628 $from .= ' AND ' . $tables[$col] . ".key = " . $sqlite->quote_string($col);
662 $from2 .= ' AND ' . $table . ".key = " . $sqlite->quote_string($col);
666 …e2 .= ' ' . $filter['logic'] . ' DATARESOLVE(' . $table . '.value,\'' . $sqlite->escape_string($fi…
/plugin/data/syntax/
H A Dtable.php253 $sqlite = $this->dthlp->getDB();
254 if (!$sqlite) return false;
268 $rows = $sqlite->queryAll($data['sql']);
586 $sqlite = $this->dthlp->getDB();
587 if (!$sqlite) return false;
606 $from .= ' AND ' . $tables[$key] . ".key = " . $sqlite->getPdo()->quote($key);
643 $from .= ' AND ' . $tables[$col] . ".key = " . $sqlite->getPdo()->quote($col);
680 $from2 .= ' AND ' . $table . ".key = " . $sqlite->getPdo()->quote($col);
685 ' DATARESOLVE(' . $table . '.value,' . $sqlite->getPdo()->quote($filter['colname']) . ') ' .
/plugin/combo/ComboStrap/
H A DCacheLog.php112 $sqlite = Sqlite::createOrGetBackendSqlite();
113 if ($sqlite === null) {
124 $request = $sqlite->createRequest()
/plugin/struct/action/
H A Dcache.php6 use dokuwiki\plugin\sqlite\SQLiteDB;
84 $sqlite = $db->getDB(false);
85 if ($sqlite instanceof SQLiteDB) {
86 $cache->depends['files'][] = $sqlite->getDbFile();
/plugin/addressbook/
H A DREADME.md5 …e contacts are stored in a sqlite3-database. The [sqlite-plugin](https://www.dokuwiki.org/plugin:s…
73 * [sqlite-plugin](https://www.dokuwiki.org/plugin:sqlite) / **2020-11-18**
/plugin/issuelinks/helper/
H A Ddb.php46 $sqlite = plugin_load('helper', 'sqlite');
47 if (!$sqlite) {
52 if ($sqlite->getAdapter()->getName() !== DOKU_EXT_PDO) {
58 $sqlite->getAdapter()->setUseNativeAlter(true);
61 if (!$sqlite->init('issuelinks', DOKU_PLUGIN . 'issuelinks/db/')) {
65 $this->db = $sqlite;

12345678