How to define SSL in MySQL Connector

This article defines the commands used to specify SSL in MySQL Connector.
  • 2016
Introduction

SSL stands for Secure Socket Layer. SSL ensures that the data recieved over the internet connection is secured and can be trusted. To use SSL following connection string can be uesd.

Driver={MySQL ODBC 3.51.17 Driver};Server=SpecifiedServerAddress;Database=SpecifiedDatabase;User=Username; Password=Password;sslca=c:\abc.pem;sslcert=c:\client-certificate.pem;sslkey=c:\client-key.pem;sslverify=1;Option=2;
 
Further Readings

You may also want to read these related articles.

Ask Your Question

Got a programming related question? You may want to post your question here

Programming Answers here

Categories

More Articles

© 2020 DotNetHeaven. All rights reserved.