Home
last modified time | relevance | path

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

12345678

/plugin/datapopup/
H A Daction.php35 $sqlite = $this->dthlp->_getDB();
36 … if(!$sqlite) return "The datapopup had an error retrieving the SQLite plugin. Please report.";
38 $res = $sqlite->query($query);
39 $rows = $sqlite->res2arr($res);
/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/davcal/
H A Dhelper.php13 protected $sqlite = null; variable in helper_plugin_davcal
300 if(!$sqlite)
348 if(!$sqlite)
368 if(!$sqlite)
391 if(!$sqlite)
414 if(!$sqlite)
448 if(!$sqlite)
502 if(!$sqlite)
537 if(!$sqlite)
687 if(!$sqlite)
[all …]
/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/do/
H A Ddomd5changed.php10 $sqlite = sqlite_open('../../../data/meta/do.sqlite'); variable
12 sqlite_exec($sqlite, 'BEGIN TRANSACTION');
13 $res = sqlite_query($sqlite, $query);
20 …sqlite_exec($sqlite, 'UPDATE tasks SET text = \'' . sqlite_escape_string($row['tasks.text']) . '\'…
23 …sqlite_exec($sqlite, 'UPDATE task_status SET md5 = \'' . $md5 . '\' WHERE md5 = \'' . $row['tasks.…
26 sqlite_exec($sqlite, 'COMMIT');
28 sqlite_close($sqlite);
/plugin/dwcommits/
H A DREADME1 The plugin requires the sqlite plugin.
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/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/extendpage/helper/
H A Ddb.php14 protected $sqlite; variable in helper_plugin_extendpage_db
32 $this->sqlite = plugin_load('helper', 'sqlite');
33 if (!$this->sqlite) {
38 if ($this->sqlite->getAdapter() === null) {
40 $this->sqlite = null;
46 $this->sqlite = null;
54 $this->sqlite = null;
67 …if ($this->sqlite && $conf['metadir'] != substr($this->sqlite->getAdapter()->getDbFile(), 0, $len)…
70 if (!$this->sqlite && $throw) {
73 return $this->sqlite;
[all …]
/plugin/extendpage/meta/
H A DAssignments.php18 protected $sqlite; variable in dokuwiki\\plugin\\extendpage\\meta\\Assignments
50 $this->sqlite = $helper->getDB();
61 $res = $this->sqlite->query($sql);
63 $this->sqlite->res_close($res);
80 $res = $this->sqlite->query($sql);
107 $res = $this->sqlite->query($sql, $id);
108 $pagerows = $this->sqlite->res2arr($res);
109 $this->sqlite->res_close($res);
133 $ok = (bool) $this->sqlite->query($sql);
216 $this->sqlite->res_close($res);
[all …]
/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/phpunit/phpunit/tests/Regression/GitHub/
H A D1351.phpt5 if (!extension_loaded('pdo') || !in_array('sqlite', PDO::getAvailableDrivers())) {
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Drecipes.rst404 $dbh = new PDO('sqlite::memory:');
/plugin/firenews/
H A Dsyntax.php56 $sqlite = $this->sqlConnection($pluginname);
59 $sqlite->query("CREATE TABLE IF NOT EXISTS $tablename
176 $sqlite->query("UPDATE {$tablename}
198 $sqlite->query("DELETE FROM {$tablename}
238 $result = $sqlite->query("SELECT * FROM {$tablename}
298 /** @var helper_plugin_sqlite $sqlite */
299 $sqlite = plugin_load('helper', 'sqlite');
300 if (!$sqlite) {
308 if (!$sqlite->init($dbname, $updatedir)) {
312 return $sqlite;
[all …]
/plugin/fksnewsfeed/
H A Daction.php251 $data = new ModelNews($this->helper->sqlite);
H A Dhelper.php47 public helper_plugin_sqlite $sqlite; variable in helper_plugin_newsfeed
62 $this->sqlite = $this->loadHelper('sqlite');
64 $this->serviceNews = new ServiceNews($this->sqlite);
65 $this->servicePriority = new ServicePriority($this->sqlite);
66 $this->serviceDependence = new ServiceDependence($this->sqlite);
67 $this->serviceStream = new ServiceStream($this->sqlite);
70 if (!$this->sqlite) {
74 …if (!$this->sqlite->init('newsfeed', DOKU_PLUGIN . $pluginName . DIRECTORY_SEPARATOR . 'db' . DIRE…
96 $res = $this->sqlite->query('SELECT * FROM dependence WHERE parent=?', $streamId);
97 foreach ($this->sqlite->res2arr($res) as $row) {
/plugin/fksnewsfeed/inc/ORM/
H A DAbstractModel.php13 protected helper_plugin_sqlite $sqlite; variable in FYKOS\\dokuwiki\\Extension\\PluginNewsFeed\\Model\\AbstractModel
15 public function __construct(helper_plugin_sqlite $sqlite) { argument
16 $this->sqlite = $sqlite;
H A DAbstractService.php18 protected helper_plugin_sqlite $sqlite; variable in FYKOS\\dokuwiki\\Extension\\PluginNewsFeed\\ORM\\AbstractService
20 … public function __construct(helper_plugin_sqlite $sqlite, string $table, string $modelClassName) { argument
22 $this->sqlite = $sqlite;
29 return ($this->modelClassName)::createFromArray($this->sqlite, $res);
37 return (bool)$this->sqlite->query($sql,
46 $this->sqlite->query($sql,
55 $res = $this->sqlite->query('SELECT max(' . $this->table . '_id) FROM ?', $this->table);
56 return (int)$this->sqlite->res2single($res);
61 $res = $this->sqlite->query('SELECT * FROM ?', $this->table);
62 foreach ($this->sqlite->res2arr($res) as $row) {
[all …]
H A DModelPriority.php33 …$res = $this->sqlite->query('DELETE FROM priority WHERE stream_id=? AND news_id =?', $this->stream…
34 return $this->sqlite->res2arr($res);
H A DModelStream.php23 …$res = $this->sqlite->query('SELECT * FROM priority o JOIN news n ON o.news_id=n.news_id WHERE str…
25 $ars = $this->sqlite->res2arr($res);
27 $service = new ServiceNews($this->sqlite);
29 $priority = ModelPriority::createFromArray($this->sqlite, $ar);
57 $res = $this->sqlite->query('SELECT * FROM dependence WHERE parent=?', $this->streamId);
58 $service = new ServiceStream($this->sqlite);
59 foreach ($this->sqlite->res2arr($res) as $row) {
70 $res = $this->sqlite->query('SELECT * FROM dependence WHERE child=?', $this->streamId);
71 $service = new ServiceStream($this->sqlite);
72 foreach ($this->sqlite->res2arr($res) as $row) {
H A DServiceDependence.php13 public function __construct(helper_plugin_sqlite $sqlite) { argument
14 parent::__construct($sqlite, 'dependence', ModelDependence::class);
H A DServiceNews.php14 public function __construct(helper_plugin_sqlite $sqlite) { argument
15 parent::__construct($sqlite, 'news', ModelNews::class);
H A DServicePriority.php16 public function __construct(helper_plugin_sqlite $sqlite) { argument
17 parent::__construct($sqlite, 'priority', ModelPriority::class);
21 …$res = $this->sqlite->query('SELECT * FROM ? WHERE stream_id=? AND news_id =?', $this->table, $str…
22 return $res ? ($this->modelClassName)::createFromArray($this->sqlite, $res) : null;
H A DServiceStream.php13 public function __construct(helper_plugin_sqlite $sqlite) { argument
14 parent::__construct($sqlite, 'stream', ModelStream::class);
18 $res = $this->sqlite->query('SELECT * FROM ' . $this->table . ' WHERE name=?', $name);
19 return ($this->modelClassName)::createFromArray($this->sqlite, $res->fetch());
/plugin/geonav/
H A Dcontinents.sql9 # Database: test.sqlite

12345678