maxdb_connect_errno
(no version information, might be only in CVS)
maxdb_connect_errno -- Returns the error code from last connect call
Description
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.
Return values
An error code value for the last call to maxdb_connect(), if it failed.
zero means no error occurred.
Example
Exemplo 1. maxdb_connect_errno sample
<?php $link = maxdb_connect("localhost", "MONA", "RED");
if (!$link) { printf("Can't connect to localhost. Errorcode: %d\n", maxdb_connect_errno()); } ?>
|
|
The above examples would produce the following output:
Affected rows (INSERT): 15
Affected rows (UPDATE): 15
Affected rows (DELETE): 0
Affected rows (SELECT): -1 |