How to use SSL In ODBC

This article gives a brief introduction about and SSL In ODBC.
  • 4383
Introduction

SSL is used to make sure that the data sent over the network will remain safe and and thus can be trusted. So to implement it use the following command.

Driver={MySQL ODBC 5.1 Driver};Server=SpecifiedServerAddress;Database=SpecifiedDatabase;User=Username; Password=Password;sslca=c:\cacert.pem;sslcert=c:\client-certificate.pem;sslkey=c:\client-sslkey.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.