RE: jdbc taglib:nested queries

2001-05-10 Thread mihai manuta
i Michele [mailto:[EMAIL PROTECTED]] Sent: Friday, May 04, 2001 12:06 PM To: '[EMAIL PROTECTED]' Subject: jdbc taglib:nested queries Hi, Suppose that I want to do the following thing: 1) creating a query query1 that identifies n records. 2) looping on the resultset of query1 and for each

Re: jdbc taglib:nested queries

2001-05-04 Thread Morgan Delagrange
Sure you should be able to do that. Just nest a new statement inside of rset1. It will probably be pretty verbose-looking though. On Fri, 4 May 2001, Quaini Michele wrote: > Hi, > Suppose that I want to do the following thing: > > 1) creating a query query1 that identifies n records. > 2) lo

jdbc taglib:nested queries

2001-05-04 Thread Quaini Michele
Hi, Suppose that I want to do the following thing: 1) creating a query query1 that identifies n records. 2) looping on the resultset of query1 and for each record 2.1) making another query query2 2.2) printing results of query1 and query 2. Is it possible with JDBC taglibs? and if yes, co