Encryption multiple server in Mysql

This article describes about connection string related to Encryption, multiple server in Mysql.
  • 2008

Introduction

Using more than one servers

The string given below is used for using more than one server in a network.

Server=specifiedserverAddress1 & specifiedserverAddress2 & etc..;Database=specifiedDatabase;Uid=Username;Pwd=password;
 
 

Using encryption

Encryption refers to conversion of data into such a format which is not understood by an unauthorized user. This is useful for maintaining security. The below  command is used for Secure Sockets Layer which ensures that the data sent between the client and the server is secure. This command will be valid for
 Connector/NET version 5.0.3. and higher versions.

Server=specifiedServerAddress;Database=specifiedDatabase;Uid=Username;Pwd=password;Encrypt=true;


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.