sqlite_error_string
Returns a textual representation of an error code.
Syntax
$sqlite_error_string ( errcode )
|
Parameters
errcode
The error code to format.
Return Value
A formatted, textual representation of errcode.
Example
; Displays textual representation of the latest error code which is stored in %sqlite_errno
var %err = %sqlite_errno echo -a Last Error: $sqlite_error_string(%err) ; Example output: ; Last Error: not an error |