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.