Home
last modified time | relevance | path

Searched refs:mysqli (Results 1 – 14 of 14) sorted by relevance

/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
Dextension.cache.mysqli.php76 * @var mysqli
78 private $mysqli; variable in getID3_cached_mysqli
116 $this->mysqli = new mysqli($host, $username, $password);
117 if ($this->mysqli->connect_error) {
118 …throw new Exception('Connect Error (' . $this->mysqli->connect_errno . ') ' . $this->mysqli->conne…
122 if (!$this->mysqli->select_db($database)) {
138 $SQLquery .= ' FROM `'.$this->mysqli->real_escape_string($this->table).'`';
139 $SQLquery .= ' WHERE (`filename` = \''.$this->mysqli->real_escape_string(getID3::VERSION).'\')';
141 if ($this->cursor = $this->mysqli->query($SQLquery)) {
156 $this->mysqli->query('TRUNCATE TABLE `'.$this->mysqli->real_escape_string($this->table).'`');
[all …]
/plugin/photogallery/phpThumb/
DphpThumb.php306 …$mysqli = new mysqli($phpThumb->config_mysql_hostname, $phpThumb->config_mysql_username, $phpThumb… variable
307 if ($mysqli->connect_error) {
308 …$phpThumb->ErrorImage('MySQLi connect error ('.$mysqli->connect_errno.') '.$mysqli->connect_error);
310 if ($result = $mysqli->query($phpThumb->config_mysql_query)) {
314 $mysqli->close();
320 $mysqli->close();
324 $mysqli->close();
325 $phpThumb->ErrorImage('Error in MySQL query: "'.$mysqli->error.'"');
DphpThumb.config.php.default195 $PHPTHUMB_CONFIG['mysql_extension'] = 'mysqli'; // either "mysqli" or "mysql"
/plugin/autham/
Dauth.php74 $conn = new mysqli($sql_host, $sql_user, $sql_pass, $database);
113 $conn = new mysqli($sql_host, $sql_user, $sql_pass, $database);
/plugin/photogallery/phpThumb/demo/
DphpThumb.demo.object.php66 …$mysqli->query("INSERT INTO `table` (`thumbnail`) VALUES ('".mysqli_real_escape_string($phpThumb->…
/plugin/pagestat/
Dremote.php104 $sqli = new mysqli("localhost", "www-data", "135790", "wordlist");
179 $sqli = new mysqli("localhost", "www-data", "135790", "gldic");
/plugin/authucenter/lib/uc_client/lib/
Ddbi.class.php36 if(!$this->link = new mysqli($dbhost, $dbuser, $dbpw, $dbname)) {
/plugin/authdrupal8/
DREADME.md30 mysqli fix by
/plugin/jplayer/
Dcomposer.lock98 …base as a cache storage (deprecated in PHP 5.5, removed in PHP >= 7.0, use `ext-mysqli` instead).",
99 … "ext-mysqli": "MySQLi extension is required to use the MySQL database as a cache storage.",
/plugin/authsmf20/
Dauth.php226 $this->_smf_db_link = new mysqli(
/plugin/crossdbsqlclient/syntax/
Ddbwrapper.php65 $db = new mysqli ( $serverName, $userName, $passWord, $dbName );
/plugin/simplemysqlclient/syntax/
Dsimplemysqlclient.php605 $dbCon = new mysqli ( $serverName, $userName, $passWord, $dbName );
/plugin/photogallery/phpThumb/docs/
Dphpthumb.changelog.txt72 * [bugfix: #988] mysqli support in demo
/plugin/jplayer/vendor/james-heinrich/getid3/
Dchangelog.txt27 » add demo.mysqli.php, remove demo.mysql.php
143 * bugfix (G:76): add mysqli version of caching extension