278279280281282283284285
transformer.transform(src, res); return new XSLTResultSet(tx, context, this, res.getNode()); } catch ( TransformerException e ) { throw new ProcessingException(e); } }
6364656667686970717273
try { dt = DTSMHelper.nodeToTable(res, symbols); return true; } catch ( DTSMException e ) { throw new ProcessingException(e); } } else { dt = null; return false;
6162636465666768
checkOpened(); try { return context.getDocument(tx, currentKey); } catch ( DBException e ) { throw new ProcessingException("Error retrieving Document '"+currentKey.toString()+"'", e); } }
157158159160161162163164165166
DOMUtils.importNamespaces((Element)node); dt = DTSMHelper.nodeToTable(node, symbols); } catch ( DTSMException e ) { throw new ProcessingException(e); } } return dt; }
676869707172737475
} } protected void checkOpened() throws QueryException { if ( keySet == null ) throw new ProcessingException("No results"); if ( !opened ) throw new ProcessingException("ResultSet is not opened"); }
6465666768697071727374
tb.addEntry(Constants.OBJ_TEXT, EmptyBytes); dt = tb.buildDocumentTable(); return true; } catch ( DBException e ) { throw new ProcessingException(e); } } else { dt = null; return false;
9596979899100101102
xu.execute(tx, domAdapter); return new XUpdateResultSet(tx, context, this, xu.getModified()); } catch ( Exception e ) { throw new ProcessingException("Error executing XUpdate query", e); } }
170171172173174175176177
try { DocumentTable dt = toDocumentTable(rs); return DTSMHelper.tableToDocument(dt); } catch ( DTSMException e ) { throw new ProcessingException(e); } }
209210211212213214215216
} sw.write(RESULTS_END); return sw.toString(); } catch ( DTSMException e ) { throw new ProcessingException(e); } }