ingres_error
(PECL ingres >= 1.1.0)
ingres_error — Get a meaningful error message for the last error generated
Description
$link
] ) : stringReturns a string containing the last error, or NULL if no error has occurred.
If a link
resource is passed to
ingres_error(), it returns the last error recorded for
the link. If no link is passed then ingres_error()
returns the last error reported using the default link.
The function, ingres_error(), should always be called after executing any database query. Calling another function before ingres_error() is called will reset or change any error message from the last Ingres function call.
Examples
Example #1 Get a message for the last error generated
<?php
$link = ingres_connect($database, $user, $password);
$result = ingres_query($link, "select * from table");
$error_text = ingres_error();
if (!is_null($error_text)) {
echo "An error occurred - " . $error_text;
}
?>
See Also
- ingres_errno() - Get the last Ingres error number generated
- ingres_errsqlstate() - Get the last SQLSTATE error code generated
- ingres_next_error() - Get the next Ingres error
English translation
You have asked to visit this site in English. For now, only the interface is translated, but not all the content yet.If you want to help me in translations, your contribution is welcome. All you need to do is register on the site, and send me a message asking me to add you to the group of translators, which will give you the opportunity to translate the pages you want. A link at the bottom of each translated page indicates that you are the translator, and has a link to your profile.
Thank you in advance.
Document created the 30/01/2003, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/php-rf-function.ingres-error.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.