maxdb_error
maxdb::error
Returns a string description of the last error
&reftitle.description;
&style.procedural;
stringmaxdb_error
resourcelink
&style.oop;
stringmaxdb->error
The maxdb_error function is identical to the corresponding
maxdb_errno function in every way, except instead of returning
an integer error code the maxdb_error function will return
a string representation of the last error to occur for the database connection
represented by the link parameter. If no error has occurred,
this function will return an empty string.
&reftitle.returnvalues;
A string that describes the error. An empty string if no error occurred.
&reftitle.examples;
&style.oop;
query("SELECT xxx FROM hotel.city")) {
printf("Errormessage: %s\n", $maxdb->error);
}
/* close connection */
$maxdb->close();
?>
]]>
&style.procedural;
]]>
&example.outputs.similar;
&reftitle.seealso;
maxdb_connect_errno
maxdb_connect_error
maxdb_errno
maxdb_sqlstate