All Known Implementing Classes:
MariaDBConnectionPool, MySQLConnectionPool, SQLiteConnectionPool

public interface ConnectionPool
A connection pool that manages connections to a database.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns a connection from the connection pool.
    void
    Releases a connection back to the connection pool.
    void
    Shuts down the connection pool.
  • Method Details

    • getConnection

      Connection getConnection() throws SQLException
      Returns a connection from the connection pool.
      Returns:
      a connection from the connection pool
      Throws:
      SQLException - if an error occurs while getting a connection
    • releaseConnection

      void releaseConnection(Connection connection) throws SQLException
      Releases a connection back to the connection pool.
      Parameters:
      connection - the connection to release
      Throws:
      SQLException - if an error occurs while releasing the connection
    • shutdown

      void shutdown() throws SQLException
      Shuts down the connection pool.
      Throws:
      SQLException - if an error occurs while shutting down the connection pool