- Native (non-ODBC) MySQL interface for Dolphin Smalltalk.
- Based on the Pharo implementation from pharo-rdbms.
- Primarily for use with ReStore relational database interface.
Now supports MySQL's caching_sha2_password authentication using OpenSSL for secure socket communication.
To use secure socket communication specify useSecureConnection when creating your driver spec (connection information):
MySQLDriverSpec new
db: 'my_database';
host: '192.168.1.234';
user: 'my_user';
password: 'my_password';
useSecureConnection;
yourself