Typo in doc example

Page ODBCDatabase, code:

Var db As New ODBCDatabase
db.DataSource = “”
Try
db.Connect
// proceed with database operations
Catch error As DatabaseExcecption
MessageBox("Error: " + error.ErrorMessage)
End Try

Word to modify: DatabaseException (look carefully).

Apparently, .ErrorMessage does not exists too…

Use .Message instead.

And while someone correct this example, look at the other two… an errors never goes alone !

You can email these types of issue to docs@xojo.com to get them fixed.

Yes Man !

I know.