Uses of Class
edu.caltech.nanodb.commands.ExecutionException
-
Packages that use ExecutionException Package Description edu.caltech.nanodb.commands This package contains the classes that represent the commands that the NanoSQL database recognizes. -
-
Uses of ExecutionException in edu.caltech.nanodb.commands
Methods in edu.caltech.nanodb.commands that throw ExecutionException Modifier and Type Method Description void
AnalyzeCommand. execute(NanoDBServer server)
void
BeginTransactionCommand. execute(NanoDBServer server)
abstract void
Command. execute(NanoDBServer server)
Actually performs the command.void
CommitTransactionCommand. execute(NanoDBServer server)
void
CrashCommand. execute(NanoDBServer server)
void
CreateIndexCommand. execute(NanoDBServer server)
void
CreateTableCommand. execute(NanoDBServer server)
void
CreateViewCommand. execute(NanoDBServer server)
void
DropIndexCommand. execute(NanoDBServer server)
void
DropTableCommand. execute(NanoDBServer server)
This method executes the DROP TABLE command by calling theTableManager.dropTable(java.lang.String)
method with the specified table name.void
DumpCommand. execute(NanoDBServer server)
void
ExitCommand. execute(NanoDBServer server)
This method really doesn't do anything, and it isn't intended to be called.void
ExplainCommand. execute(NanoDBServer server)
void
FlushCommand. execute(NanoDBServer server)
void
InsertCommand. execute(NanoDBServer server)
void
OptimizeCommand. execute(NanoDBServer server)
void
RollbackTransactionCommand. execute(NanoDBServer server)
void
ShowPropertiesCommand. execute(NanoDBServer server)
void
ShowSystemStatsCommand. execute(NanoDBServer server)
void
ShowTablesCommand. execute(NanoDBServer server)
void
ShowTableStatsCommand. execute(NanoDBServer server)
void
VerifyCommand. execute(NanoDBServer server)
private void
InsertCommand. insertSingleRow(NanoDBServer server)
This method is used when inserting only a single row of data.
-