postgreSQL.pool.dispose

Syntax

postgreSQL.pool.dispose (poolname)

Params

poolname is a string containing the global name for the pool.

Action

Disposes a pool of connections.

Returns

True.

Examples

postgreSQL.pool.dispose ("mytestpool")

« true

Notes

This verb closes all idle connections in the pool immediately. Connections that are currently in use will be closed when they are released. Therefore, disposing the pool does not disrupt connections already in use by other threads.

See Also

postgreSQL.pool.create

postgreSQL.connection.release