releaseConnection method

bool releaseConnection(
  1. int connectionId
)

Releases a connection back to the pool.

The connectionId must be a connection obtained from getConnection. Returns true on success, false on failure.

Implementation

bool releaseConnection(int connectionId) =>
    _backend.poolReleaseConnection(connectionId);