Concept Flow - Connection pooling concept
App requests DB connection
Check pool for free connection
Use free conn
Execute query
Return connection to pool
Ready for next request
This flow shows how an app asks for a database connection, reuses one from the pool if available, or creates a new one if needed, then returns it for reuse.