[squeak-dev] [4.1] Installation and test case for SqueakDBX

Hannes Hirzel hannes.hirzel at gmail.com
Tue Apr 20 12:57:08 UTC 2010


Hello

I installed SqueakDBX ( http://www.squeakdbx.org ) with the following commands

   (Installer ss project: 'MetacelloRepository') install:
'ConfigurationOfSqueakDBX'.
   (ConfigurationOfSqueakDBX project version: '1.1') load


Then I tried to access a local mySQL database (Ubuntu 9.10) with an
adapted code snippet from the method testExampleConnection

| conn connectionSettings |
       connectionSettings := DBXConnectionSettings
                       host: '127.0.0.1'
                       port: '3306'
                       database: 'lex'
                       userName: 'hh2'
                       userPassword: 'something'.
       conn := DBXConnection platform: DBXMySQLPlatform new settings:
connectionSettings.
       conn connect.
       conn open.


Alternatively I tried DBXMySQL4Platform

In both cases an error message came up.


Has anybody used SqueakDBX successfully so far on 4.1?

Regards
Hannes


P.S. Alternatively instructions for setting it up on MSWindows and
accessing are fine as well.



More information about the Squeak-dev mailing list