Home
last modified time | relevance | path

Searched refs:db (Results 176 – 189 of 189) sorted by last modified time

12345678

/plugin/owncloud/
H A Dhelper.php38 public function helper_plugin_owncloud($db=true) { argument
39 if($db){
67 $db = \OC_DB::prepare($sql);
68 $this->lastQuery = $db->execute($params);
/plugin/sqlraw/
H A Dsyntax.php100 global $db;
145 $db =& DB::connect($tempdb);
146 if (DB::isError($db)) {
147 $error = $db->getMessage();
169 if (!empty($db)) {
185 if (!empty($db)) {
188 $result =& $db->getAll($query);
192 $db->disconnect();
765 $db->disconnect();
785 global $db;
[all …]
/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/geonav/server/
H A Dget_state.php23 $db = sqlite_open('../db/'.$tempdb.'.sqlite', 0666, $error); variable
24 if (!$db) {
29 $result = sqlite_query($db, $query);
35 sqlite_close($db);
H A DgetContinent.php17 $db = sqlite_open('../db/test.sqlite', 0666, $error);
18 if (!$db) {
24 $result = sqlite_query($db, $query);
30 sqlite_close($db);
/plugin/dokutexit/
H A DREADME.md48 … *texit.bib* in the namespace of the refnotes database pages (config option `reference-db-enable`).
/plugin/jquery/
H A Djquery-1.4.2.min.js48 …tAttribute(b);return a===null?w:a}return c.style(a,b,d)}});var O=/\.(.*)$/,db=function(a){return a… function
51 …{o=e.split(".");e=o.shift();k=new RegExp("(^|\\.)"+c.map(o.slice(0).sort(),db).join("\\.(?:.*\\.)?…
/plugin/jmol2/jmol/
H A DJmolApplet0_Minimize.jar ... vecmath.Vector3d da final javax.vecmath.Vector3d db final javax.vecmath.Vector3d dc final javax. ...
H A DJmolApplet.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/jmol/ org/ ...
H A DJmolAppletSigned.jarMETA-INF/MANIFEST.MF META-INF/SELFSIGN.SF META-INF/SELFSIGN ...
H A DJmolAppletSigned0_Minimize.jar ... vecmath.Vector3d da final javax.vecmath.Vector3d db final javax.vecmath.Vector3d dc final javax. ...
/plugin/phpbblinks/
H A Daction.php268 $db = @mysql_select_db($dbu,$this->con);
269 if ($db)
/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/bibtex/OSBib/format/
H A DBIBSTYLE.php30 function BIBSTYLE($db, $output) argument
32 $this->db = $db;
228 $recordset = $this->db->select(array("WKX_creator"), array("surname", "firstname",
230 " WHERE FIND_IN_SET(" . $this->db->formatField("id") . ", " .
231 $this->db->tidyInput($this->row[$nameType]) . ")");
232 $numNames = $this->db->numRows($recordset);
236 while($row = $this->db->loopRecordSet($recordset))
248 new CLOSE($this->db, $error);

12345678