Pool mechanism in Npgsql for Postgre SQL

This article deals with basic connection string related to Pool mechanism in Npgsql for Postgre SQL.
  • 3214

Introduction

The connection string given below is used for controlling the pool size in a program.

Server=127.1.1.1;Port=5432;Database=User_Database;Userid=Username;Password=User_Password; Protocol=3;Pooling=true;MinPoolSize=1;MaxPoolSize=30;ConnectionLifeTime=20;

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.