Re: [PHP] mysql_errno codes

2003-06-17 Thread Don Read
On 16-Jun-2003 Thomas Hochstetter wrote: > Hi. > > [3rd try] ... where can i get mysql_error codes from? The ones that > mysql_errno returns. > You can get all the OS and MySQL error codes with: $ perror `jot 1500` | grep -v 'Unknown error' Regards, -- Don Read

RE: [PHP] mysql_errno codes

2003-06-16 Thread Thomas Hochstetter
Thanks guys ... always a pleasure. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] mysql_errno codes

2003-06-16 Thread David Nicholson
Hello, This is a reply to an e-mail that you wrote on Mon, 16 Jun 2003 at 17:53, lines prefixed by '>' were originally written by you. > Hi. > [3rd try] ... where can i get mysql_error codes from? The ones that > mysql_errno returns. In the comments section of http://uk2.php.net/mysql_errno it s

Re: [PHP] mysql_errno codes

2003-06-16 Thread Jeff Harris
On Jun 16, 2003, "Thomas Hochstetter" claimed that: |Hi. | |[3rd try] ... where can i get mysql_error codes from? The ones that |mysql_errno returns. | |Thanks |Thomas | All mysqld error messages are located into the file $MYSQL_ROOT_DIR/$LANGUAGE/errmsg.txt (or thereabouts) and listed in numeric

RE: [PHP] mysql_errno codes

2003-06-16 Thread Jay Blanchard
[snip] [3rd try] ... where can i get mysql_error codes from? The ones that mysql_errno returns. [/snip] If MySQL returns an error code (let's use 80 as an example) go to your shell and type; perror 80 You will get back a response... Error code 80: Accessing a corrupted shared library If you