A word of warning:
It appears that if you specify an invalid ibm_db2.instance_name in your php.ini file, your cataloged db2_connect() will fail with a returned value of false and when you use db2_conn_error() or db2_conn_errormsg() to check on the reason, those functions will return an empty string.db2_conn_errormsg
Почист и полокален преглед на PHP референцата, со задржана структура од PHP.net и подобра читливост за примери, секции и белешки.
db2_conn_errormsg
Референца за `function.db2-conn-errormsg.php` со подобрена типографија и навигација.
db2_conn_errormsg
(PECL ibm_db2 >= 1.0.0)
db2_conn_errormsg — Returns the last connection error message and SQLCODE value
= NULL
db2_conn_errormsg() returns an error message and SQLCODE value representing the reason the last database connection attempt failed. As db2_connect() returns false in the event of a failed connection attempt, do not pass any parameters to
db2_conn_errormsg() to retrieve the associated error message and SQLCODE value.
за добивање на SQLSTATE вредноста. connection parameter to retrieve the associated error message and SQLCODE value for a specific connection.
Параметри
connection- за добивање на експлицитна порака за грешка и поврзаната SQLCODE вредност.
Вратени вредности
Returns a string containing the error message and SQLCODE value resulting from a failed connection attempt. If there is no error associated with the last connection attempt, db2_conn_errormsg() returns an empty string.
Примери
Example #1 Retrieving the error message returned by a failed connection attempt
The following example demonstrates how to return an error message and SQLCODE value after deliberately passing invalid parameters to db2_connect().
<?php
$conn = db2_connect('badname', 'baduser', 'badpassword');
if (!$conn) {
print db2_conn_errormsg();
}
?>Пример #1 Пример што покажува затворачка ознака што го опфаќа последниот нов ред
[IBM][CLI Driver] SQL1013N The database alias name or database name "BADNAME" could not be found. SQLSTATE=42705 SQLCODE=-1013
Види Исто така
- db2_conn_error() - Враќа стринг што го содржи SQLSTATE вратен од последниот обид за конекција
- db2_connect() - Враќа врска до база на податоци
- db2_stmt_error() - Враќа стринг што го содржи SQLSTATE вратен од SQL изјава
- db2_stmt_errormsg() - Враќа стринг што го содржи последниот текст за грешка на SQL изјавата