Datasource Connection Pool? -
on different sites written that, datasource maintain connection pool. yes agree maintain pool if dont close connection once done transaction. close connection once done transaction. practically datasource never have connection maintain pool. correct? scenario when programmer forget close connection.right?
the connection pool maintains open connections period of time , closes them after time of inactivity. forgetting close connection prevents being released pool , later reused, that's why should always close them. question anyways?
Comments
Post a Comment