Class SQLProvider
java.lang.Object
fr.prodrivers.bukkit.commons.storage.SQLProvider
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 Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic Connection
Gets the database connection.static io.ebean.EbeanServer
getEbeanServer
(List<Class<?>> classes) Gets an Ebean ORM Server that uses the provided classes
-
Constructor Details
-
SQLProvider
public SQLProvider()
-
-
Method Details
-
getConnection
Gets the database connection.- Returns:
- Connection or null
-
getEbeanServer
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
-