In connection pooling, what happens to a database connection after it is closed by the application?

  • The connection is returned to the connection pool
  • The connection is stored in a temporary cache
  • The connection is terminated permanently
  • The connection remains active indefinitely
In connection pooling, after a database connection is closed by the application, it is not immediately terminated. Instead, the connection is returned to the connection pool, where it can be reused by subsequent requests. This allows for efficient management of database connections, reducing the overhead of establishing new connections for each database interaction.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *