Home
last modified time | relevance | path

Searched refs:sqlite (Results 151 – 175 of 181) sorted by last modified time

12345678

/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…
H A Dcloud.php73 $sqlite = $this->dthlp->_getDB();
74 if(!$sqlite) return false;
98 $from .= ' AND ' . $tables[$col] . ".key = " . $sqlite->quote_string($col);
110 WHERE dataau.key = " . $sqlite->quote_string($ckey) . "
140 $sqlite = $this->dthlp->_getDB();
141 if(!$sqlite) return false;
153 $res = $sqlite->query($dataau['sql']);
154 $rows = $sqlite->res2arr($res);
/plugin/data-au/
H A Daction.php50 $sqlite = $this->dthlp->_getDB();
51 if(!$sqlite) return;
55 $res = $sqlite->query('SELECT pid FROM pages WHERE page = ?',$id);
56 $pid = (int) $sqlite->res2single($res);
59 $sqlite->query('DELETE FROM dataau WHERE pid = ?',$pid);
60 $sqlite->query('DELETE FROM pages WHERE pid = ?',$pid);
/plugin/data-au/admin/
H A Daliases.php65 $sqlite = $this->dthlp->_getDB();
66 if(!$sqlite) return;
68 $sqlite->query("BEGIN TRANSACTION");
69 if (!$sqlite->query("DELETE FROM aliases")) {
70 $sqlite->query('ROLLBACK TRANSACTION');
86 $sqlite->query('ROLLBACK TRANSACTION');
90 $sqlite->query("COMMIT TRANSACTION");
97 $sqlite = $this->dthlp->_getDB();
98 if(!$sqlite) return;
103 $res = $sqlite->query($sql);
[all …]
H A Dclean.php65 $sqlite = $this->dthlp->_getDB();
66 if(!$sqlite) return;
68 $res = $sqlite->query("SELECT pid, page FROM pages");
69 $rows = $sqlite->res2arr($res);
74 $sqlite->query('DELETE FROM dataau WHERE pid = ?',$row['pid']);
75 $sqlite->query('DELETE FROM pages WHERE pid = ?',$row['pid']);
/plugin/swarmwebhook/
H A Drequirements.txt2 https://github.com/cosmocode/sqlite.git lib/plugins/sqlite
/plugin/findologicxmlexport/vendor/jms/serializer/
H A DCHANGELOG.md716 - add required sqlite extension for developing [\#649](https://github.com/schmittjoh/serializer/pul…
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Drecipes.rst404 $dbh = new PDO('sqlite::memory:');
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Regression/GitHub/
H A D1351.phpt5 if (!extension_loaded('pdo') || !in_array('sqlite', PDO::getAvailableDrivers())) {
/plugin/404manager/
H A Drequirements.txt3 https://github.com/cosmocode/sqlite.git lib/plugins/sqlite
H A Dadmin.php63 private $sqlite; variable in admin_plugin_404manager
365 $count = $this->sqlite->res2count($res);
448 $count = $this->sqlite->res2count($res);
457 $res = $this->sqlite->query($statement, $entry);
565 $value = $this->sqlite->res2single($res);
689 $this->sqlite = plugin_load('helper', 'sqlite');
690 if (!$this->sqlite) {
710 if ($this->sqlite == null) {
712 if (!$this->sqlite) {
778 $value = $this->sqlite->res2single($res);
[all …]
/plugin/timetrack/
H A Dhelper.php64 $sqlite = $this->getDb();
65 if(!$sqlite) return false;
69 $sqlite->res_close($res);
76 $sqlite->res_close($res);
89 $sqlite = $this->getDb();
117 $sqlite = $this->getDb();
130 $sqlite->res_close($res);
155 $sqlite = $this->getDb();
161 $sqlite->res_close($res);
181 $sqlite = $this->getDb();
[all …]
/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 …]
H A DREADME1 The plugin requires the sqlite plugin.
/plugin/dwcommits/lang/en/
H A Ddwc_admin.txt118 …elete the sqlite database file for this entry, which is kept in data/meta. The sqlite dtabase fil…
121 …e any sqlite database files which you have deleted. So, if you use Delete Entries and then Resto…
/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/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/davcard/
H A Dhelper.php14 protected $sqlite = null; variable in helper_plugin_davcard
32 if(!$this->sqlite)
45 return $this->sqlite;
148 if(!$sqlite)
261 if(!$sqlite)
301 if(!$sqlite)
326 if(!$sqlite)
370 if(!$sqlite)
429 if(!$sqlite)
749 if(!$sqlite)
[all …]
/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/top/_test/
H A Ddate.test.php18 $sqlite = $top_helper->getDBHelper();
21 $sqlite->query($sql,'wiki:start',3,'','201407');
22 $sqlite->query($sql,'wiki:start',2,'','201401');
23 $sqlite->query($sql,'wiki:start',6,'','201201');
24 $sqlite->query($sql,'wiki:start',1,'',null);
25 $sqlite->query($sql,'en:wiki:start',8,'en','201201');
26 $sqlite->query($sql,'en:wiki:start',1,'en','201303');
27 $sqlite->query($sql,'de:wiki:start',6,'de','201201');
/plugin/datatemplate/syntax/inc/
H A Dcache.php40 $sqlite = $dtlist->dthlp->_getDB();
55 $res = $sqlite->query($sqlcc);
56 $pageids = $sqlite->res2arr($res, $assoc = false);
74 $res = $sqlite->query($sql);
75 $rows = $sqlite->res2arr($res, $assoc = false);
/plugin/rating/
H A Dhelper.php15 protected $sqlite = null; variable in helper_plugin_rating
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;
61 if(!$sqlite) return;
66 $sqlite->res_close($res);
71 $sqlite->res_close($res);
93 if(!$sqlite) return;
[all …]
/plugin/data-graph/
H A Dsyntax.php15 $sqlite = plugin_load('helper', 'sqlite');
16 if(!$sqlite){
21 if(! $sqlite->init('data', dirname(__FILE__) . '/db/')){
25 $this->db = $sqlite;
H A Drequirements.txt1 https://github.com/cosmocode/sqlite.git lib/plugins/sqlite

12345678