Class MariaDBConnectionPool

java.lang.Object
org.strassburger.lifestealz.util.storage.connectionPool.MariaDBConnectionPool
All Implemented Interfaces:
ConnectionPool

public class MariaDBConnectionPool extends Object implements ConnectionPool
A MariaDB connection pool that manages connections to a MariaDB database.
  • Constructor Details

    • MariaDBConnectionPool

      public MariaDBConnectionPool(String host, String port, String database, String username, String password)
      Constructs a MariaDB connection pool with the specified host, port, database, username, and password.
      Parameters:
      host - the host of the MariaDB database
      port - the port of the MariaDB database
      database - the name of the MariaDB database
      username - the username to connect to the MariaDB database
      password - the password to connect to the MariaDB database
  • Method Details

    • getConnection

      public Connection getConnection() throws SQLException
      Returns a connection to the MariaDB database from the connection pool.
      Specified by:
      getConnection in interface ConnectionPool
      Returns:
      a connection to the MariaDB database
      Throws:
      SQLException - if an error occurs while getting a connection
    • releaseConnection

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

      public void shutdown()
      Shuts down the MariaDB connection pool and releases all resources.
      Specified by:
      shutdown in interface ConnectionPool