for example something like this (excuse the syntax :):
// recursive function
public void readData (int parent) {
select id, name from test where parent= $parent;
for each result {
print ($name);
readData($id);
}// start recursion: readData(null);
But how to write in XSP, when methods need to be in root <xsp:page> element and esql tags must be inside top user element (or how it is termed).
Thank a lot for each your outline!
osup
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
