Uses of Class
com.mckoi.database.TransactionException
-
Packages that use TransactionException Package Description com.mckoi.database The core database classes for Mckoi.com.mckoi.database.interpret -
-
Uses of TransactionException in com.mckoi.database
Methods in com.mckoi.database that throw TransactionException Modifier and Type Method Description void
Transaction. closeAndCommit()
Closes and marks a transaction as committed.void
DatabaseConnection. commit()
Tries to commit the current transaction.private void
Database. convertAllUserTables(DatabaseConnection connection, java.io.PrintStream out)
Processes each table in user space and converts the format to the newest version of the data file format.private void
Database. moveLargeObjectsToBlobStore(DatabaseConnection connection, java.io.PrintStream out)
Scans all the user tables for large objects and if a large object is found, it is moved into the BlobStore.(package private) void
TableDataConglomerate. processCommit(Transaction transaction, java.util.ArrayList visible_tables, java.util.ArrayList selected_from_tables, java.util.ArrayList touched_tables, TransactionJournal journal)
Tries to commit a transaction to the conglomerate.(package private) void
MasterTableJournal. testCommitClash(DataTableDef table_def, MasterTableJournal journal)
Throws a transaction clash exception if it detects a clash between journal entries. -
Uses of TransactionException in com.mckoi.database.interpret
Methods in com.mckoi.database.interpret that throw TransactionException Modifier and Type Method Description Table
CompleteTransaction. evaluate()
abstract Table
Statement. evaluate()
Evaluates the statement and returns a table that represents the result set.Table
SQLQueryExecutor. execute(DatabaseConnection connection, SQLQuery query)
Executes the given SQLQuery object on the given DatabaseConnection object.
-