Uses of Class
io.github.coho04.mysql.entities.Database
Packages that use Database
-
Uses of Database in io.github.coho04.mysql
Methods in io.github.coho04.mysql that return DatabaseModifier and TypeMethodDescriptionMYSQL.getDatabase
(String name) Retrieves a Database object with the given name.MYSQL.getOrCreateDatabase
(String name) Retrieves an existing Database object with the given name or creates a new one if it doesn't exist.Methods in io.github.coho04.mysql that return types with arguments of type DatabaseModifier and TypeMethodDescriptionMYSQL.getDatabases()
Retrieves a list of databases from the MySQL server.Methods in io.github.coho04.mysql with parameters of type DatabaseModifier and TypeMethodDescriptionvoid
MYSQL.switchDatabase
(Database database) Switches the current database to the specified database. -
Uses of Database in io.github.coho04.mysql.entities
Methods in io.github.coho04.mysql.entities that return DatabaseModifier and TypeMethodDescriptionColumn.getDatabase()
Retrieves the Database object associated with this Column.Row.getDatabase()
Retrieves the database associated with this Row.Table.getDatabase()
Retrieves the database associated with the table.Methods in io.github.coho04.mysql.entities with parameters of type DatabaseModifier and TypeMethodDescriptionvoid
User.removePermissionToDatabase
(Permissions PERMISSION, Database database) Removes the specified permissions from the user for the given database.void
User.setPermissionToDatabase
(Permissions permissions, Database database) Sets the specified permissions to the given database for the current user.Constructors in io.github.coho04.mysql.entities with parameters of type Database