The below works for me with MSSQL Server
settings := DBXConnectionSettings
host: 'NAME'
port: ''
database: 'MyDatabase'
userName: 'user'
userPassword: 'pass'.
platform := DBXOdbcBackend new.
connection := DBXConnection platform: platform settings: settings.
connection connect.
connection open.where NAME is the name given in the ODBC control panel and MyDatabase is the database name. Tell us if it works. Bye T.
