Property
Database_Class.ErrorCode
Warning
This item was deprecated in version 2019r2. Please use DatabaseException as a replacement.
Description
The error code 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.
MS SQL Server error codes: SELECT * FROM SYS.MESSAGES
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
Compatibility
All project types on all supported operating systems.