Returns the string value of the last generated driver error.
Function LastDriverError Returns String
Call: | Get LastDriverError to StringVariable |
Returns the string value of the last generated driver error.
Error texts generated by SQL Server and other client/server databases are generally larger than those generated by the embedded database. In character mode environments, it happens that the text is larger than the supported maximum error text length. In those cases, you can get the complete error text by using the LastDriverError function.
To show the last error text, one would program:
Procedure ShowLastSQLErrorText Handle hoCLIHandler String sLastError Get Create U_cCLIHandler to hoCLIHandler If (hoCLIHandler > 0) Begin Set psDriverID of hoCLIHandler to "MSSQLDRV" Get LastDriverError of hoCLIHandler to sLastError End Send Destroy of hoCLIHandler Showln "ERROR: " sLastError End_Procedure