tomp.ext.jdbc
Class SQLUpdate

java.lang.Object
  |
  +--tomp.ext.Base
        |
        +--tomp.ext.jdbc.SQLUpdate

public class SQLUpdate
extends Base

The SQL UPDATE command wrapper.

Can be used for any non-select SQL command.


Field Summary
 
Fields inherited from class tomp.ext.Base
action, application, status, STATUS, STATUS_ABORTED, STATUS_IN_PROCESSING, STATUS_NOT_PROCESSED, STATUS_READY, STATUS_READY_INVALID, STATUS_READY_VALID, validator
 
Constructor Summary
SQLUpdate(Action e, java.lang.String id, Validator v, JDBCConnection connection, java.lang.String query)
          Constructs the SQL UPDATE command wrapper.
 
Method Summary
 void update()
          Sends the actual query to the JDBC Connection.
 
Methods inherited from class tomp.ext.Base
abortProcessing, commitProcessing, getAsRawSource, getAsSource, id, isReady, isValid, startProcessing
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SQLUpdate

public SQLUpdate(Action e,
                 java.lang.String id,
                 Validator v,
                 JDBCConnection connection,
                 java.lang.String query)
          throws EXTException

Constructs the SQL UPDATE command wrapper.

Method Detail

update

public void update()
            throws EXTException

Sends the actual query to the JDBC Connection.

EXTException