Class SQLProvider

java.lang.Object
fr.prodrivers.bukkit.commons.storage.SQLProvider

public class SQLProvider extends Object
SQL Database provider for Prodrivers plugins. While StorageProvider offers a solid way to efficiently store persistent data across servers, some plugins may need the power of a more traditional, relational database. SQLProvider fills the need by offering access to a JDBC-compliant database instance. While SQLProvider exists, it is strongly encouraged to use StorageProvider if possible. SQLProvider is an optional part of the plugin, meaning that the result of its methods, on top of the underlying SQL database internal quirks and wrong queries, is not guaranteed to be correct. One must check against null each results returned by SQLProvider.
  • Constructor Details

    • SQLProvider

      public SQLProvider()
  • Method Details

    • getConnection

      public static Connection getConnection()
      Gets the database connection.
      Returns:
      Connection or null
    • getEbeanServer

      public static io.ebean.EbeanServer getEbeanServer(List<Class<?>> classes)
      Gets an Ebean ORM Server that uses the provided classes
      Parameters:
      classes - Classes (typically entity beans) to be used by the ORM
      Returns:
      Ebean Server or null