Uses of Class
be.SIRAPRISE.client.DmlCommand

Packages that use DmlCommand
be.SIRAPRISE.client   
 

Uses of DmlCommand in be.SIRAPRISE.client
 

Subclasses of DmlCommand in be.SIRAPRISE.client
 class DmlAddCommand
          A DmlAddCommand is the command that will make sure that a tuple will be added to the named relvar (in the target database to which this command will be sent) for the object passed to the constructor.
 class DmlAssertCommand
          A DmlAssertCommand is the command that will make sure that a tuple will exist in the named relvar (in the target database to which this command will be sent) for the object passed to the constructor.
 class DmlAssignmentCommand
          A DmlAssignmentCommand is any command that performs some kind of update in the database.
 class DmlDeleteCommand
          A DmlDeleteCommand is the command that will make sure that a tuple will be removed from the named relvar (in the target database to which this command will be sent) for the object passed to the constructor.
 class DmlMultipleAssignmentCommand
           
 class DmlNonAssignmentCommand
          A DmlNonAssignmentCommand is any command that doesn't perform some kind of update in the database.
 class DmlSingleAssignmentCommand
           
 class DmlUnassertCommand
          A DmlUnassertCommand is the command that will make sure that a tuple will not exist in the named relvar (in the target database to which this command will be sent) for the object passed to the constructor.
 class DmlUpdateCommand
          A DmlUpdateCommand is the command that will replace a tuple with another one in the named relvar (in the target database to which this command will be sent) for the object passed to the constructor.
 

Methods in be.SIRAPRISE.client with parameters of type DmlCommand
 AbstractRelation DBTransaction.execDmlCommand(DmlCommand command)
          Sends a command to the server and returns the result obtained.
 AbstractRelation DBTransaction.execDmlCommandAndEndTransaction(DmlCommand command)
          Sends a command to the server and returns the result obtained.