Home
last modified time | relevance | path

Searched refs:dbName (Results 1 – 8 of 8) sorted by relevance

/plugin/crossdbsqlclient/syntax/
H A Ddbwrapper.php7 private $dbName = null; variable in DbWrapper
9 …onstruct(DokuWiki_Syntax_Plugin $integrator, $dbtype, $serverName, $userName, $passWord, $dbName) { argument
14 $this->dbName = $dbName;
26 $this->_mysql ( $this->serverName, $this->userName, $this->passWord, $this->dbName, $query );
29 $this->_oracle ( $this->serverName, $this->userName, $this->passWord, $this->dbName, $query );
32 … $this->_postgresql ( $this->serverName, $this->userName, $this->passWord, $this->dbName, $query );
62 private function _mysql($serverName, $userName, $passWord, $dbName, $query) { argument
65 $db = new mysqli ( $serverName, $userName, $passWord, $dbName );
68 mysqli_select_db ( $db, $dbName ); // DB-Auswahl
112 private function _postgresql($serverName, $userName, $passWord, $dbName, $query) { argument
[all …]
H A Dcrossdbsqlclient.php182 $dbName = $data[2];
185 return $this->connectToDbWrapper($dbtype, $serverName, $userName, $passWord, $dbName);
197 $dbName = $this->getConf ( 'dbName' );
199 return $this->connectToDbWrapper($dbtype, $serverName, $userName, $passWord, $dbName);
202 private function connectToDbWrapper($dbtype, $serverName, $userName, $passWord, $dbName) { argument
206 $dbWrapper = new DbWrapper($this, $dbtype, $serverName, $userName, $passWord, $dbName );
/plugin/database2/
H A Dsyntax.php14 protected $dbName; variable in syntax_plugin_database2
124 $this->dbName = trim($args['database']);
125 if ($this->dbName == '') {
128 $this->dbName = getID();
136 if ($db->connect($this->dbName, $this->options['auth'])) {
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Backend/
H A DPDO.php174 foreach ($this->propertyMap as $xmlName => $dbName) {
175 $calendar[$xmlName] = $row[$dbName];
228 foreach ($this->propertyMap as $xmlName => $dbName) {
231 $values[':' . $dbName] = $properties[$xmlName];
232 $fieldNames[] = $dbName;
987 foreach ($this->subscriptionPropertyMap as $xmlName => $dbName) {
988 if (!is_null($row[$dbName])) {
989 $subscription[$xmlName] = $row[$dbName];
1032 foreach ($this->subscriptionPropertyMap as $xmlName => $dbName) {
1035 $values[':' . $dbName] = $properties[$xmlName];
[all …]
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/Backend/
H A DPDO.php209 foreach ($this->propertyMap as $xmlName => $dbName) {
210 $calendar[$xmlName] = $row[$dbName];
270 foreach ($this->propertyMap as $xmlName => $dbName) {
273 $values[':' . $dbName] = $properties[$xmlName];
274 $fieldNames[] = $dbName;
1114 foreach ($this->subscriptionPropertyMap as $xmlName => $dbName) {
1115 if (!is_null($row[$dbName])) {
1116 $subscription[$xmlName] = $row[$dbName];
1159 foreach ($this->subscriptionPropertyMap as $xmlName => $dbName) {
1162 $values[':' . $dbName] = $properties[$xmlName];
[all …]
/plugin/simplemysqlclient/syntax/
H A Dsimplemysqlclient.php603 $dbName = $this->getConf ( 'dbName' );
605 $dbCon = new mysqli ( $serverName, $userName, $passWord, $dbName );
608 mysqli_select_db ( $dbCon, $dbName ); // DB-Auswahl
/plugin/davcal/
H A DcalendarBackendDokuwiki.php114 foreach ($this->propertyMap as $xmlName => $dbName)
116 $calendar[$xmlName] = $row[$dbName];
/plugin/database/
H A Ddatabase.php173 global $dbName;
216 $this->imagesFolder=DOKU_BASE.'lib/plugins/'.$dbName.'/images/';
218 $this->baseFolder = DOKU_INC.'data/pages/'.$dbName.'/';
219 $this->URL = DOKU_URL.'doku.php?idx='.$dbName;
1660 global $dbName;
1662 $this->IDX .='<input type="hidden" name="idx" value="'.$dbName.'"
2193 global $dbName;
2225 $command = substr($IDX,strlen($dbName)+1);
2228 if ($IDX==$dbName.':'.$environment->DICTIONARY_FOLDER)