| java.lang.Object com.quadcap.sql.StmtDelete
StmtDelete | public class StmtDelete implements Stmt(Code) | | Implementation of the SQL DELETE statement.
author: Stan Bailes |
StmtDelete | public StmtDelete()(Code) | | Default constructor
|
StmtDelete | public StmtDelete(String tableName, Expression predicate)(Code) | | Explicit constructor from table name and predicate
|
execute | public void execute(Session session) throws IOException, SQLException(Code) | | Execute the delete operation: Get a table cursor, maybe one with
a predicate (if there's a "WHERE", implying that we really don't
want to delete *all* the rows.)
|
|
|