|
Auxiliary Functions | wb_err_num |
This function returns the text of the last 602SQL Server error.
Text description of the last error.
Display the last error on the SQL Server
error_reporting(0); $sqlstat="..."; wb_exec($conn, $sqlstat); /* error may occur */ echo "<br><b>" . wb_err_str($conn). "</b><br>"; error_reporting(E_ALL);
Auxiliary Functions | wb_err_num |