Home
last modified time | relevance | path

Searched refs:db (Results 76 – 100 of 189) sorted by relevance

12345678

/plugin/issuelinks/_test/
H A DhandleIssueLinkSyntax.test.php21 $db = plugin_load('helper', 'issuelinks_db');
22 $db->reset();
/plugin/authowncloud/
H A Dauth.php220 $db = OC_DB::prepare($sql);
221 $result = $db->execute($values);
314 …$db = OC_DB::prepare('SELECT `configvalue` FROM `*PREFIX*preferences` WHERE `userid` = ? AND `conf…
315 $result = $db->execute(array($user));
/plugin/quickstats/scripts/
H A Dget_geocity.php9 function get_GeoLiteCity($db) { argument
17 $data_file = $dnld_dir . $db;
/plugin/issuelinks/services/
H A DJira.service.php35 $db = plugin_load('helper', 'issuelinks_db');
36 $jiraUrl = $db->getKeyValue('jira_url');
38 $authToken = $db->getKeyValue('jira_token');
40 $jiraUser = $db->getKeyValue('jira_user');
/plugin/guestbook/
H A Dbasic.class.php9 var $db = null; variable in guestbook_database
40 …$this->db = @mysql_connect($db_server, $db_user, $db_password) or die ("Konnte keine Verbindung zu…
41 @mysql_select_db($db_name, $this->db);
47 @mysql_close($this->db);
48 $this->db = null;
/plugin/quickstats/
H A Daction.php501 $db= QUICK_STATS . 'db/lite_php_browscap.ini';
502 if(!file_exists($db)) {
503 $db = QUICK_STATS . 'db/full_php_browscap.ini';
505 if(!file_exists($db)) {
506 $db = QUICK_STATS . 'db/php_browscap.ini';
508 if(!file_exists($db)) {
512 $browser=get_browser_local(null,true,$db);
/plugin/approve/action/
H A Dmigration.php66 $db = $sqlite->getAdapter()->getDb();
71 $db->beginTransaction();
181 $db->commit();
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/
H A DPrivateKey.php230 $db = $ps . chr(1) . $salt;
232 $maskedDB = $db ^ $dbMask;
403 $db = $maskedDB ^ $dbMask;
404 $lHash2 = substr($db, 0, $this->hLen);
405 $m = substr($db, $this->hLen);
/plugin/struct/action/
H A Dcache.php81 /** @var helper_plugin_struct_db $db */
82 $db = plugin_load('helper', 'struct_db');
84 $sqlite = $db->getDB(false);
/plugin/redproject/
H A Dstyle.css32 background: #3498db;
97 border-left-color: #3498db;
107 border-left-color: #3498db;
/plugin/struct/meta/
H A DSchema.php173 $db = $helper->getDB(false);
174 if (!$db instanceof SQLiteDB) return [];
176 $tables = $db->queryAll("SELECT DISTINCT tbl FROM schemas ORDER BY tbl");
H A DCSVImporter.php57 /** @var \helper_plugin_struct_db $db */
58 $db = plugin_load('helper', 'struct_db');
59 $this->sqlite = $db->getDB(true);
/plugin/crossdbsqlclient/syntax/
H A Dcrossdbsqlclient.php146 $db = $this->connectToDb ($data);
148 $db->executeQuery($query);
/plugin/sql/
H A DDB.php96 function mysql_select_db($db) { argument
100 $DSN['database'] = $db;
/plugin/timetrack/
H A Dhelper.php26 protected $db = null; variable in helper_plugin_timetrack
44 if($this->db === null) {
45 $this->db = plugin_load('helper', 'sqlite');
46 if($this->db === null) {
50 if(!$this->db->init('timetrack', dirname(__FILE__) . '/db/')) {
51 $this->db = null;
56 return $this->db;
/plugin/issuelinks/classes/
H A DIssue.php87 $db = plugin_load('helper', 'issuelinks_db');
88 …$issue = $db->loadIssue($this->serviceID, $this->projectId, $this->issueId, $this->isMergeRequest);
587 $db = plugin_load('helper', 'issuelinks_db');
588 return $db->saveIssue($this);
/plugin/phpbblinks/
H A Daction.php268 $db = @mysql_select_db($dbu,$this->con);
269 if ($db)
/plugin/dwcommits/lang/en/
H A Ddwc_admin.txt118db/dbnames.ser. Clicking Delete Entries will delete the dwcommit record from db/dbnames.ser and a…
121 …software saves a backup file of the previous record set, which is saved in db/dbnames.ser.prev. I…
/plugin/diagramsnet/lib/js/diagramly/
H A DNotionClient.js788 (mxUtils.bind(this, function(db, idx, drawioReady) argument
794 temp.appendChild(createLink(this.getTitleVal(db), mxUtils.bind(this, function()
796 itemId = db.id;
797 itemName = this.getTitleVal(db);
806 fn({id: itemId, drawioReady: drawioReady, schema: db});
/plugin/mdpage/vendor/cebe/markdown/tests/markdown-data/
H A Dlist_items_with_undefined_ref.md7 it to use by setting its `db` property.
/plugin/stopforumspam/
H A Daction.php15 private $db = 0; variable in action_plugin_stopforumspam
/plugin/judge/
H A Dsyntax.php373 $db = new SQLite3(DBFILE);
374 …$submissions = $db->querySingle('SELECT COUNT(*) FROM submissions WHERE problem_name = "' . $data[…
/plugin/authyubikey/lib/
H A DREADME58 https://github.com/Yubico/php-yubico/blob/master/example/db.sql[example/db.sql]
/plugin/openas/
H A Daction.php244 $db = DOKU_BASE;
245 $default = "${db}lib/plugins/openas/images/404.jpg";
/plugin/authjoomla3/
H A Dauth.php68 …('%s:dbname=%s;host=%s', $this->joomlaConfig->dbtype, $this->joomlaConfig->db, $this->joomlaConfig…

12345678