Lines Matching refs:host
17 $phost = 'p:' . $host;
20 …printf("[001] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s,…
26 if (true !== ($tmp = my_mysqli_real_connect($link, $host, $user, $passwd, $db, $port, $socket)))
45 …printf("[007] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s,…
51 if (true !== ($tmp = $link->real_connect($host, $user, $passwd, $db, $port, $socket)))
73 …printf("[014] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s,…
76 if (NULL !== ($tmp = $link->connect($host, $user, $passwd, $db, $port, $socket)))
79 printf("Flipping phost/host order\n");
81 if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))
82 …printf("[016] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s,…
83 $host, $user, $db, $port, $socket);
106 if (!$link = new my_mysqli($host, $user, $passwd, $db, $port, $socket))
107 …printf("[022] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s,…
108 $host, $user, $db, $port, $socket);
131 if (NULL !== ($tmp = $link->connect($host, $user, $passwd, $db, $port, $socket)))
134 if (!$link = mysqli_connect($host, $user, $passwd, $db, $port, $socket))
135 …printf("[029] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s,…
136 $host, $user, $db, $port, $socket);
152 Flipping phost/host order