mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2025-04-05 11:23:15 +00:00
57 lines
1.1 KiB
Java
57 lines
1.1 KiB
Java
package me.husky;
|
|
|
|
import java.sql.Connection;
|
|
import org.bukkit.plugin.Plugin;
|
|
|
|
/**
|
|
* Abstract Database class, serves as a base for any connection method (MySQL,
|
|
* SQLite, etc.)
|
|
*
|
|
* @author -_Husky_-
|
|
* @author tips48
|
|
*/
|
|
public abstract class Database
|
|
{
|
|
|
|
/**
|
|
* Plugin instance, use for plugin.getDataFolder() and plugin.getLogger()
|
|
*/
|
|
protected Plugin plugin;
|
|
|
|
/**
|
|
* Creates a new Database
|
|
*
|
|
* @param plugin Plugin instance
|
|
*/
|
|
protected Database(Plugin plugin)
|
|
{
|
|
this.plugin = plugin;
|
|
}
|
|
|
|
/**
|
|
* Opens a connection with the database
|
|
*
|
|
* @return Connection opened
|
|
*/
|
|
public abstract Connection openConnection();
|
|
|
|
/**
|
|
* Checks if a connection is open with the database
|
|
*
|
|
* @return true if a connection is open
|
|
*/
|
|
public abstract boolean checkConnection();
|
|
|
|
/**
|
|
* Gets the connection with the database
|
|
*
|
|
* @return Connection with the database, null if none
|
|
*/
|
|
public abstract Connection getConnection();
|
|
|
|
/**
|
|
* Closes the connection with the database
|
|
*/
|
|
public abstract void closeConnection();
|
|
}
|