Uses of Class
edu.caltech.nanodb.server.CommandResult
-
Packages that use CommandResult Package Description edu.caltech.nanodb.client This package contains classes that allow NanoDB to be used from multiple concurrent clients, to maintain client session state, and so forth.edu.caltech.nanodb.server -
-
Uses of CommandResult in edu.caltech.nanodb.client
Methods in edu.caltech.nanodb.client that return CommandResult Modifier and Type Method Description CommandResult
ExclusiveClient. handleCommand(java.lang.String command)
abstract CommandResult
InteractiveClient. handleCommand(java.lang.String command)
Subclasses can implement this method to handle each command entered by the user.CommandResult
SharedServerClient. handleCommand(java.lang.String command)
Methods in edu.caltech.nanodb.client with parameters of type CommandResult Modifier and Type Method Description private void
InteractiveClient. outputCommandResult(CommandResult result)
Outputs relevant information from the command-result object. -
Uses of CommandResult in edu.caltech.nanodb.server
Methods in edu.caltech.nanodb.server that return CommandResult Modifier and Type Method Description CommandResult
NanoDBServer. doCommand(Command command, boolean includeTuples)
Executes a single database command, generating aCommandResult
holding details about the operation, and optionally any tuples generated by the operation.CommandResult
NanoDBServer. doCommand(java.lang.String command, boolean includeTuples)
Parse and execute a single command, returning aCommandResult
object describing the results.Methods in edu.caltech.nanodb.server that return types with arguments of type CommandResult Modifier and Type Method Description java.util.List<CommandResult>
NanoDBServer. doCommands(java.lang.String commands, boolean includeTuples)
Parse and execute one or more commands, returning a list ofCommandResult
object describing the results.
-