Database.ErrorMessage

From Xojo Documentation

Read-Only Property (As String )
StringValue = aDatabase.ErrorMessage

Supported for all project types and targets.

Text of the error message returned from the database. Error codes and error messages are different for each database.

Notes

You should check the Error property after each database operation to see if there was an error. If there is an error, you can display or log the ErrorCode and ErrorMessage.

Sample Code

This code attempts to create an in-memory SQLite database and displays the error if one occurred:

Dim db As New SQLiteDatabase
If db.Connect Then
// Connected to in-memory database
Else
If db.Error Then
MsgBox("Error: " + Str(db.ErrorCode) + " - " + db.ErrorMessage)
End If
End If