Uses of Interface
io.ebean.Database
-
Packages that use Database Package Description io.ebean io.ebean.bean Enhanced beans API and Support objectsio.ebean.event Persist and Query Event Controllers and Listenersio.ebean.plugin Provides a API for plugins.io.ebean.service io.ebean.text.csv CSV processing objects. -
-
Uses of Database in io.ebean
Subinterfaces of Database in io.ebean Modifier and Type Interface Description interface
EbeanServer
Deprecated.Methods in io.ebean that return Database Modifier and Type Method Description static Database
DB. byName(String name)
Return the database for the given name.static Database
DatabaseFactory. create(DatabaseConfig config)
Create using the DatabaseConfig object to configure the database.static Database
DatabaseFactory. create(String name)
Create using properties to configure the database.static Database
DatabaseFactory. createWithContextClassLoader(DatabaseConfig config, ClassLoader classLoader)
Create using the DatabaseConfig additionally specifying a classLoader to use as the context class loader.Database
BeanFinder. db()
Return the Database to use.Database
BeanFinder. db(String server)
Return typically a different Database to the default.Database
Finder. db()
Return the Database this finder will use.Database
Finder. db(String databaseName)
Return typically a different Database to the default.Database
Model. db()
Return the underlying 'default' Database.static Database
DB. getDefault()
Return the default database.Methods in io.ebean with parameters of type Database Modifier and Type Method Description Query<T>
Query. usingDatabase(Database database)
Execute the query using the given database. -
Uses of Database in io.ebean.bean
Constructors in io.ebean.bean with parameters of type Database Constructor Description Dflt(Database database)
L2(Database database)
Ref(Database database)
-
Uses of Database in io.ebean.event
Methods in io.ebean.event with parameters of type Database Modifier and Type Method Description static void
ShutdownManager. registerDatabase(Database server)
Register an ebeanServer to be shutdown when the JVM is shutdown.static void
ShutdownManager. unregisterDatabase(Database server)
Deregister an ebeanServer. -
Uses of Database in io.ebean.plugin
Subinterfaces of Database in io.ebean.plugin Modifier and Type Interface Description interface
SpiServer
Extensions to Database API made available to plugins. -
Uses of Database in io.ebean.service
Methods in io.ebean.service that return Database Modifier and Type Method Description Database
SpiContainer. createServer(DatabaseConfig configuration)
Create the EbeanServer for a given configuration.Database
SpiContainer. createServer(String name)
Create an EbeanServer just using the name. -
Uses of Database in io.ebean.text.csv
Methods in io.ebean.text.csv with parameters of type Database Modifier and Type Method Description void
CsvCallback. begin(Database database)
The processing is about to begin.void
DefaultCsvCallback. begin(Database server)
Create a transaction if required.
-