PHP Doku:: Returns the error code from last connect call - function.maxdb-connect-errno.html

Verlauf / Chronik / History: (43) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzDatenbankerweiterungenAnbieterspezifische DatenbankerweiterungenMaxDBMaxDB Funktionenmaxdb_connect_errno

Ein Service von Reinhard Neidl - Webprogrammierung.

MaxDB Funktionen

<<maxdb_commit -- maxdb::commit

maxdb_connect_error>>

maxdb_connect_errno

(PECL maxdb >= 1.0)

maxdb_connect_errnoReturns the error code from last connect call

Beschreibung

int maxdb_connect_errno ( void )

The maxdb_connect_errno() function will return the last error code number for last call to maxdb_connect(). If no errors have occured, this function will return zero.

Rückgabewerte

An error code value for the last call to maxdb_connect(), if it failed. zero means no error occurred.

Beispiele

Beispiel #1 maxdb_connect_errno sample

<?php
$link 
maxdb_connect("localhost""XXXXXXXX""YYYYYYYYY");

if (!
$link) {
   
printf("Can't connect to localhost. Errorcode: %d\n"maxdb_connect_errno());
}
?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

PHP Warning:  maxdb_connect(): -4008 POS(1) Unknown user name/password combination [08004] <...>
Can't connect to localhost. Errorcode: -4008

Siehe auch


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)