edu.wpi.cs.dsrg.xmldb.xat.common.operator.specialoperator
Interface SQLStmt

All Known Implementing Classes:
SQLStmtImp

public interface SQLStmt
extends SpecialOperator

An interface for the interface SQLStmt.

Since:
1.0

Method Summary
 java.lang.String getStmt()
          Get the current SQL statement in the SQL operator.
 void setStmt(java.lang.String newSQL)
          Set the SQL stored in this SQL operator.
 
Methods inherited from interface edu.wpi.cs.dsrg.xmldb.xat.common.operator.XATOperator
clone, getNode, getOutput, getOutputColumnName, getOutputDataSource, getOutputDataSources, getPrimaryDataSource, getPrimarySource, setNode, setOutput, setOutputColumnName
 
Methods inherited from interface edu.wpi.cs.dsrg.xmldb.xat.common.operator.XATQueryObject
getStatistics, isValidStatistic
 
Methods inherited from interface edu.wpi.cs.dsrg.xmldb.xat.common.operator.XATProperties
getProperties, getProperty, isValidPropertyName, setProperty
 

Method Detail

getStmt

public java.lang.String getStmt()
Get the current SQL statement in the SQL operator.
Returns:
current SQL language.
Since:
1.0

setStmt

public void setStmt(java.lang.String newSQL)
Set the SQL stored in this SQL operator.
Parameters:
newSQL - the new SQL statement.
Returns:
original SQL statement.
Since:
1.0