public boolean next() throws QueryException {
checkOpened();
if ( nextKey() != null ) {
try {
TableBuilder tb = new TableBuilder(context.getSymbols());
tb.addEntry(Constants.OBJ_TEXT, EmptyBytes);
dt = tb.buildDocumentTable();
return true;
}
catch ( DBException e ) {
throw new ProcessingException(e);
}