edu.jhu.tmaj.database.sql
Class ModifySQL

java.lang.Object
  extended by edu.jhu.tmaj.database.sql.ModifySQL
All Implemented Interfaces:
SQL
Direct Known Subclasses:
AbstractModifySQL, DeleteSQL

public abstract class ModifySQL
extends java.lang.Object
implements SQL

The superclass of BaseUpdateSQL and DeleteSQL. This class holds a tableName, information required by any SQL statement that modifies a table.


Constructor Summary
ModifySQL(java.lang.String tableName)
          Constructs this object.
 
Method Summary
 java.lang.String getTableName()
          Returns the tablename that is being updated.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ModifySQL

public ModifySQL(java.lang.String tableName)
Constructs this object.

Parameters:
tableName - the name of the database table that is being updated.
Method Detail

getTableName

public java.lang.String getTableName()
Returns the tablename that is being updated.