How to disable connection pooling in Pervasive

this article explains the commands by which connection pooling can be disable in Pervasive.
  • 1737

Introduction

A connection pool is a cache of database connections maintained so that the connection can be reused when future requests to the database are request. To disable connection pooling in Pervasive PSQL, the pooling parameter in connection string is set as false. The connection string used to disable pooling in Pervasive PSQL is given below.

Syntax

Server Name=server_add;Database Name=database_name;User ID=user_name;Password=password;Pooling=False;

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.