/plugin/elasticsearch/vendor/nyholm/dsn/src/ |
H A D | DsnParser.php | 43 $arguments = $dsn; 73 return self::getDsn($dsn); 78 $dsn = self::parse($dsn); 79 if (!$dsn instanceof Url) { 83 return $dsn; 88 $dsn = self::parse($dsn); 93 return $dsn; 107 return self::getDsn($dsn); 120 $dsn = $matches['alt']; 123 $dsn = $matches['dsn']; [all …]
|
/plugin/sentry/ |
H A D | helper.php | 21 $dsn = []; 22 $dsn['protocol'] = $parts['scheme']; 23 $dsn['public'] = $parts['user']; 24 $dsn['secret'] = $parts['pass']; 26 $dsn['url'] = $parts['host']; 34 $dsn['path'] = $path; 36 return $dsn; 46 $dsn = $this->parseDSN(); 47 …return $dsn['protocol'] . '://' . $dsn['url'] . $dsn['path'] . '/api/' . $dsn['project'] . '/store… 57 $dsn = $this->parseDSN(); [all …]
|
/plugin/elasticsearch/vendor/ruflin/elastica/src/ |
H A D | ClientConfiguration.php | 79 $dsn = $func->first(); 174 $data = ['host' => $dsn->getHost()]; 176 if (null !== $dsn->getScheme()) { 180 if (null !== $dsn->getUser()) { 181 $data['username'] = $dsn->getUser(); 184 if (null !== $dsn->getPassword()) { 188 if (null !== $dsn->getUser() && null !== $dsn->getPassword()) { 192 if (null !== $dsn->getPort()) { 193 $data['port'] = $dsn->getPort(); 196 if (null !== $dsn->getPath()) { [all …]
|
/plugin/sql/ |
H A D | DB.php | 17 function __construct($dsn, $username="", $password="", $driver_options=array()) { argument 18 parent::__construct($dsn,$username,$password, $driver_options); 63 static function &connect($dsn, $options = array()) argument 65 if (! is_array($dsn) && strpos($dsn,'//')) { 66 $parts = explode('/', $dsn); 71 $dsn = $dsna; 73 …if (is_array($dsn)) $obj = new MDB3($dsn['phptype'].':host='.$dsn['hostspec'].';dbname='.$dsn['dat… 74 else $obj = new MDB3($dsn); 76 $obj->dsn = $dsn;
|
/plugin/elasticsearch/vendor/nyholm/dsn/src/Exception/ |
H A D | InvalidDsnException.php | 17 private $dsn; variable in Nyholm\\Dsn\\Exception\\InvalidDsnException 19 public function __construct(string $dsn, string $message) argument 21 $this->dsn = $dsn; 22 parent::__construct(sprintf('%s (%s)', $message, $dsn)); 27 return $this->dsn;
|
H A D | DsnTypeNotSupported.php | 15 * @param Dsn|string $dsn 17 public static function onlyUrl($dsn): self argument 19 return new self((string) $dsn, 'Only DSNs of type "URL" is supported.'); 23 * @param Dsn|string $dsn 25 public static function onlyPath($dsn): self argument 27 return new self((string) $dsn, 'Only DSNs of type "path" is supported.');
|
H A D | FunctionsNotAllowedException.php | 14 public function __construct(string $dsn) argument 16 parent::__construct($dsn, 'Function are not allowed in this DSN');
|
H A D | FunctionNotSupportedException.php | 19 public function __construct(string $dsn, string $function, ?string $message = null) argument 21 parent::__construct($dsn, $message ?? sprintf('Function "%s" is not supported', $function));
|
/plugin/elasticsearch/vendor/nyholm/dsn/ |
H A D | README.md | 16 composer require nyholm/dsn 26 echo $dsn->getHost(); // "127.0.0.1" 27 echo $dsn->getPath(); // "/foo/bar" 28 echo $dsn->getPort(); // null 67 echo $dsn->getHost(); // "127.0.0.1" 68 echo $dsn->getPath(); // "/foo/bar" 69 echo $dsn->getPort(); // null 110 echo $func->getName(); // "dsn" 116 echo $func->getName(); // "dsn" 213 { function | dsn } [all …]
|
H A D | CHANGELOG.md | 19 * DsnParser::parseUrl(string $dsn): Url 20 * DsnParser::parsePath(string $dsn): Path 35 $dsn = new \Nyholm\DSN('mysql://localhost'); 38 $dsn = new \Nyholm\Dsn\DsnParser::parse('mysql://localhost');
|
/plugin/strata/driver/ |
H A D | driver.php | 88 * @param dsn string the dsn to use for connecting 91 public function connect($dsn) { argument 92 $this->_dsn = $dsn; 94 $this->_db = $this->initializePDO($dsn); 97 … msg(sprintf($this->util->getLang('driver_failed_detail'), hsc($dsn), hsc($e->getMessage())), -1); 110 * @param dsn string the dsn to use for construction 113 protected function initializePDO($dsn) { argument 118 return new PDO($dsn, $credentials[0], $credentials[1]);
|
/plugin/dbquery/ |
H A D | helper.php | 36 * @param string|null $dsn 41 public function getPDO($dsn = null, $user = null, $pass = null) argument 43 $dsn = $dsn ?: $this->getConf('dsn'); 46 $conid = md5($dsn . $user . $pass); 56 $this->pdo[$conid] = new PDO($dsn, $user, $pass, $opts);
|
/plugin/authwordpress/ |
H A D | auth.php | 234 $dsn = array( 241 $dsn[] = 'port=' . $port; 243 $dsn = 'mysql:' . implode(';', $dsn); 245 $this->db = new PDO($dsn, $this->getConf('username'), $this->getConf('password'));
|
/plugin/davcal/vendor/sabre/dav/bin/ |
H A D | migrateto21.php | 57 $dsn = $argv[1]; variable 61 echo "Connecting to database: " . $dsn . "\n"; 63 $pdo = new PDO($dsn, $user, $pass);
|
H A D | migrateto30.php | 56 $dsn = $argv[1]; variable 60 echo "Connecting to database: " . $dsn . "\n"; 62 $pdo = new PDO($dsn, $user, $pass);
|
H A D | migrateto20.php | 56 $dsn = $argv[1]; variable 60 echo "Connecting to database: " . $dsn . "\n"; 62 $pdo = new PDO($dsn, $user, $pass);
|
H A D | migrateto17.php | 50 $dsn = $argv[1]; variable 54 echo "Connecting to database: " . $dsn . "\n"; 56 $pdo = new PDO($dsn, $user, $pass);
|
/plugin/authphpbb3/ |
H A D | auth.php | 593 $dsn = ''; 598 $dsn = ':host=' . $this->_phpbb_conf['dbhost'] . $port . 604 $dsn = 'mysql' . $dsn . ';charset=utf8'; 606 $dsn, 611 $dsn = 'pgsql' . $dsn . 614 $this->_phpbb_sql_link = new PDO($dsn); 618 $dsn = 'oci' . $dsn . ';charset=utf8'; 620 $dsn, 633 … $dsn = $host . ':' . $this->_phpbb_conf['root_path'] . $this->_phpbb_conf['dbhost']; 634 $this->_phpbb_sql_link = new PDO($dsn);
|
/plugin/elasticsearch/helper/ |
H A D | client.php | 66 $dsn = ['servers' => []]; 77 $dsn['servers'][] = compact('host', 'port', 'proxy'); 80 $this->elasticaClient = new \Elastica\Client($dsn);
|
/plugin/yuriigantt/_test/Drivers/ |
H A D | embedded.test.php | 74 $this->assertEquals($database->dsn, Embedded::DSN); 75 $this->assertEquals($database->dsn, Embedded::DSN);
|
/plugin/pgsqlquery/ |
H A D | syntax.php | 89 $dsn = "pgsql:host=$host;dbname=$DB;user=$user;password=$password"; 94 $link = new PDO($dsn);
|
/plugin/database2/ |
H A D | media.php | 115 list( $dsn, $authSlot, $table, $column, $idColumn, $rowid, $pageID, 148 public function __construct( $dsn, $authSlot, $table, $ioIndex, argument 152 if ( !$this->connect( $dsn, $authSlot ) ) 219 $db = new Database2_media( $dsn, $authSlot, $table, $ioIndex, $pageID );
|
/plugin/elasticsearch/ |
H A D | composer.lock | 182 "name": "nyholm/dsn", 186 "url": "https://github.com/Nyholm/dsn.git", 191 … "url": "https://api.github.com/repos/Nyholm/dsn/zipball/9445621b426bac8c0ca161db8cd700da00a4e618", 227 "dsn", 228 "dsn parser", 232 "issues": "https://github.com/Nyholm/dsn/issues", 233 "source": "https://github.com/Nyholm/dsn/tree/2.0.1" 438 "nyholm/dsn": "^2.0.0",
|
/plugin/sqlite/classes/ |
H A D | adapter_pdosqlite.php | 70 $dsn = 'sqlite:'.$this->dbfile; 73 $this->db = new PDO($dsn);
|
/plugin/strata/helper/ |
H A D | triples.php | 44 * @param dsn string an optional alternative DSN 49 $dsn = $this->getConf('default_dsn'); 50 $dsn = $this->_expandTokens($dsn); 52 $this->_dsn = $dsn; 55 list($driver,$connection) = explode(':',$dsn,2); 66 if(!$this->_db->connect($dsn)) {
|