PhpDig.net

What is PhpDig?
PhpDig is a PHP MySQL based
Web Spider & Search Engine.




ifx_errormsg

Name

ifx_errormsg — Returns error message of last Informix call

Synopsis

ifx_errormsg([errorcode]);
int errorcode (optional): Error code

Returns

Informix error message

Description

Dislays a textual description of the last Informix error. This is genrally much friendlier although less informative than error information returned by ifx_error() . If the errorcode parameter is specified, information relating to the specific error code is returned.

Version

Since version 3.0.4 and 4.0

Example

Example 562. Check for database errors

function print_error($text) {
   echo "There was an error reported by the database.\n";
   echo "Error reported was: $text";
   die();
}

// try an oncorrect login
if (!$conn = @ifx_connect( "stores7@demo_se", "testuser", "password" )) {
   print_error(ifx_errormsg());
}

// try an incorrect query
if (!$result = @ifx_query("SELECT customer_num, company FROM customer", $conn)) {
   print_error(ifx_errormsg());
   
} else {
   while ($row = ifx_fetch_row($result)) {
      printf("%s %s<BR>", $row["customer_num"], $row["company"]);
   }
}



PHP Functions Essential Reference. Copyright © 2002 by New Riders Publishing (Authors: Zak Greant, Graeme Merrall, Torben Wilson, Brett Michlitsch). This material may be distributed only subject to the terms and conditions set forth in the Open Publication License, v1.0 or later (the latest version is presently available at http://www.opencontent.org/openpub/). The authors of this book have elected not to choose any options under the OPL. This online book was obtained from http://www.fooassociates.com/phpfer/ and is designed to provide information about the PHP programming language, focusing on PHP version 4.0.4 for the most part. The information is provided on an as-is basis, and no warranty or fitness is implied. All persons and entities shall have neither liability nor responsibility to any person or entity with respect to any loss or damage arising from the information contained in this book.

Powered by: vBulletin Version 3.0.7
Copyright ©2000 - 2005, Jelsoft Enterprises Ltd.
Copyright © 2001 - 2005, ThinkDing LLC. All Rights Reserved.