Page 1 of 1

SSL conection with tDolphin

Posted: Tue Jul 23, 2019 8:57 pm
by rogerio
Hello,
I use tDolphin and need an example SSL connection to MariaDB / MySQL.
I didn't find any examples in the samples folder.
Non-SSL connection I do like this:

TRY
CONNECT oServer HOST alltrim(host) ;
USER alltrim(usuario) ;
PASSWORD alltrim(senha) ;
PORT nPort ;
FLAGS nFlags;
DATABASE alltrim(DBName)
CATCH oErr

MsgInfo( oErr:Description )

RETURN NIL
END

Could someone help me with the commands for SSL?
Tks.