Class SQLiteConnectionPool

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

public class SQLiteConnectionPool extends Object implements ConnectionPool
Connection pool for SQLite. This is not really a connection pool, but it is used to keep the same interface as the other
  • Constructor Details

    • SQLiteConnectionPool

      public SQLiteConnectionPool(String path)
  • Method Details

    • getConnection

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

      public void releaseConnection(Connection connection)
      This method does nothing, because SQLite does not support connection pooling.
      Specified by:
      releaseConnection in interface ConnectionPool
      Parameters:
      connection - the connection to release
    • shutdown

      public void shutdown()
      This method does nothing, because SQLite does not support connection pooling.
      Specified by:
      shutdown in interface ConnectionPool