Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

mysqli.connect_error(3) [php man page]

MYSQLI.CONNECT_ERROR(3) 						 1						   MYSQLI.CONNECT_ERROR(3)

mysqli::$connect_error - Returns a string description of the last connect error

       Object oriented style

SYNOPSIS
string$mysqli->connect_error () DESCRIPTION
Procedural style string mysqli_connect_error (void ) Returns the last error message string from the last call to mysqli_connect(3). RETURN VALUES
A string that describes the error. NULL is returned if no error occurred. EXAMPLES
Example #1 $mysqli->connect_error example Object oriented style <?php $mysqli = @new mysqli('localhost', 'fake_user', 'my_password', 'my_db'); // Works as of PHP 5.2.9 and 5.3.0. if ($mysqli->connect_error) { die('Connect Error: ' . $mysqli->connect_error); } ?> Procedural style <?php $link = @mysqli_connect('localhost', 'fake_user', 'my_password', 'my_db'); if (!$link) { die('Connect Error: ' . mysqli_connect_error()); } ?> The above examples will output: Connect Error: Access denied for user 'fake_user'@'localhost' (using password: YES) NOTES
Warning The mysqli->connect_error property only works properly as of PHP versions 5.2.9 and 5.3.0. Use the mysqli_connect_error(3) function if compatibility with earlier PHP versions is required. SEE ALSO
mysqli_connect(3), mysqli_connect_errno(3), mysqli_errno(3), mysqli_error(3), mysqli_sqlstate(3). PHP Documentation Group MYSQLI.CONNECT_ERROR(3)

Check Out this Related Man Page

MYSQLI_CONNECT_ERROR(3) 						 1						   MYSQLI_CONNECT_ERROR(3)

mysqli::$connect_error - Returns a string description of the last connect error

       Object oriented style

SYNOPSIS
string$mysqli->connect_error () DESCRIPTION
Procedural style string mysqli_connect_error (void ) Returns the last error message string from the last call to mysqli_connect(3). RETURN VALUES
A string that describes the error. NULL is returned if no error occurred. EXAMPLES
Example #1 $mysqli->connect_error example Object oriented style <?php $mysqli = @new mysqli('localhost', 'fake_user', 'my_password', 'my_db'); // Works as of PHP 5.2.9 and 5.3.0. if ($mysqli->connect_error) { die('Connect Error: ' . $mysqli->connect_error); } ?> Procedural style <?php $link = @mysqli_connect('localhost', 'fake_user', 'my_password', 'my_db'); if (!$link) { die('Connect Error: ' . mysqli_connect_error()); } ?> The above examples will output: Connect Error: Access denied for user 'fake_user'@'localhost' (using password: YES) NOTES
Warning The mysqli->connect_error property only works properly as of PHP versions 5.2.9 and 5.3.0. Use the mysqli_connect_error(3) function if compatibility with earlier PHP versions is required. SEE ALSO
mysqli_connect(3), mysqli_connect_errno(3), mysqli_errno(3), mysqli_error(3), mysqli_sqlstate(3). PHP Documentation Group MYSQLI_CONNECT_ERROR(3)
Man Page

6 More Discussions You Might Find Interesting

1. Programming

Access denied for user at localhost

Hi guys. We can can connect to mysql server from command line with some user. but when using mysql_connect() it says: access is denied for user 'someuser'@'localhost' (using password: YES) what should i do? (6 Replies)
Discussion started by: majid.merkava
6 Replies

2. Shell Programming and Scripting

Executing a command line in a directory and its subdirectories

I'm finally about to make the jump from PHP's mysql driver to the newer mysqli one using the mysqli converter tool. The tool is called by this command line: php /usr/share/nginx/html/rather/converter/cli.php -d -p ".php,.shtml,.inc" -u -b -v -w >> /tmp/convert.log e.g. at the web root:... (2 Replies)
Discussion started by: dheian
2 Replies

3. AIX

Error while instrumenting purify

when i instrument ourify i am getting error like .*** OI_init: Error, cannot connect to X server Purify or PureCoverage slave: Warning: Can't open display "localhost:0", using tty mode. . Got it] I am using AIX1.6 OS i have xwin32 installed in my windows.. (1 Reply)
Discussion started by: greenworld123
1 Replies

4. Shell Programming and Scripting

Cannot find localhost

I get a "not found" error from this localhost/choice.php ethan@meow:~$ ping 127.0.0.1 PING 127.0.0.1 (127.0.0.1) 56(84) bytes of data. 64 bytes from 127.0.0.1: icmp_seq=1 ttl=64 time=0.025 ms 64 bytes from 127.0.0.1: icmp_seq=2 ttl=64 time=0.036 m and this ethan@meow:~$ mysql -u... (4 Replies)
Discussion started by: Meow613
4 Replies

5. Shell Programming and Scripting

Find and replace in multiple files

Hi, I have php files in main dir and sub dir's as well. I need to find "new mysqli('localhost', 'System', 'xxxxxx', 'System', '3306');" and replace as "new mysqli('localhost', 'unx_sys', 'yyyy', 'unx_sys', '3306');" I tried like: sed 's/new mysqli\(*\)\;$/new... (1 Reply)
Discussion started by: ashokvpp
1 Replies

6. Linux

Transistion to php mysqli

All, I'm using the Enterprise Modules Framework (Tomorrow's Framework) and the recent changes/upgrades to PHP7 require the use of mysqli_ commands over the old mysql_ commands. Here is the code from the connection section of the dataio module: function... (5 Replies)
Discussion started by: TBotNik
5 Replies