Connection Pooling using AseConnection

Connection string

This ASE ADO.NET Data Provider connection string can be used for connections to Sybase Adaptive.

Connection pooling reuse connections from a pool. It saves the connection handle for reuse, instead of open new connections. Connection pooling is turned on by default.

Data Source=myASEserver;Port=5000;Database=myDataBase;Uid=myUsername;
Pwd
=myPassword;
Min Pool Size=5;Max Pool Size=50;

The Max Pool Size value restricts the maximum number of open connections. The calls to AseConnection.Open() fail with an AseException if the limit is reached.