Uses of Class
wbs.utils.exceptions.WbsDatabaseException
Packages that use WbsDatabaseException
Package
Description
Exceptions used by the WbsUtils plugin, for a variety of purposes.
A variety of database utilities, primarily making use of SQLite, with some utils for generic games.
-
Uses of WbsDatabaseException in wbs.utils.exceptions
Methods in wbs.utils.exceptions that return WbsDatabaseExceptionModifier and TypeMethodDescriptionWbsDatabaseException.addQueryException(@NotNull SQLException e, @NotNull String query) WbsDatabaseException.forEach(BiConsumer<SQLException, String> consumer) -
Uses of WbsDatabaseException in wbs.utils.util.database
Methods in wbs.utils.util.database that throw WbsDatabaseExceptionModifier and TypeMethodDescriptionbooleanWbsTable.insert(List<WbsRecord> records, Connection connection) WbsDatabase.select(PreparedStatement query) Runs a query directly, auto-closing the connection used and returning a list of WbsRecords from the results of the query.booleanWbsTable.update(List<WbsRecord> records, Connection connection, String whereClause) Updates the given list of records using the provided whereClause.booleanWbsTable.update(WbsRecord record, Connection connection, String whereClause) Performs an update using a single record for the fields, using the given where clause.Constructors in wbs.utils.util.database that throw WbsDatabaseException