SSL in PostgreSQL ODBC Driver

This article deals with connection string related to SSL in PostgreSQL ODBC Driver.
  • 3005

Introduction

SSL stands for Secure sockets layer. It uses the technique of encryption so as to ensure the secure transfer of data over the internet.

Driver={PostgreSQL ANSI};Server=IP address;Port=5432;Database=User_Database;Uid=Username;Pwd=User_Password;sslmode=require;

NOTE: The attribute 'sslmode' is case sensitive.

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.