Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 840 Bytes

File metadata and controls

19 lines (16 loc) · 840 Bytes

MySQL for Dolphin

  • Native (non-ODBC) MySQL interface for Dolphin Smalltalk.
  • Based on the Pharo implementation from pharo-rdbms.
  • Primarily for use with ReStore relational database interface.

Caching SHA-2 Pluggable Authentication

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