Developer-DUCS / eMission

eMission is a senior capstone project, a mobile app to track carbon emissions with each drive.
MIT License
4 stars 1 forks source link

Task: Optimize MySQL Connections #125

Closed cwarren279 closed 6 months ago

cwarren279 commented 7 months ago

Find a way to establish and maintain a connection to the mysql server without leaving connections open. This will also help to ensure a new session isn't created when it shouldn't be. This can be done using a connection pool or with a try-catch-finally block.

MySQL Connection Pooling:

Try Catch Finally: