FW: Squeak and MySql

Peter Crowther peter.crowther at it-iq.com
Wed Apr 7 16:08:43 UTC 1999


>From my inbox a month ago...

-----Original Message-----
From: Joerg Brunsmann [mailto:Joerg.Brunsmann at FernUni-Hagen.de]
Sent: 05 March 1999 12:50
To: squeak at cs.uiuc.edu
Subject: Squeak and MySql


Hi all,

MySql (http://www.mysql.org) is an open source SQL database
server which runs on all possible platforms. Fortunately

- MySql has a socket access interface for client connections
- a VisualWorks package exist which uses this interface

Although I don't like relational databases I ported this library
to Squeak 2.3 (why aren't Squeak sockets streamable ;-) in order
to make Squeak even more attractive. Perhaps Swiki providers
may want to use it, too.

Download the Squeak filein and see some screenshots here:

http://www.informatik.fernuni-hagen.de/import/pi3/joerg/squeak/mysql/

Use the Smalltalk front end like this:

connSpec := (JdmConnectionSpec new initialize user: 'doe'; password:
'mypass').
connection := JdmConnection on: connSpec.
resultSet := statement executeQuery: 'insert into aTable (aField) values
(aValue)'.
[resultSet next] whileTrue: [value := resultSet valueNamed: 'columnName'].

Have fun,

Joerg





More information about the Squeak-dev mailing list