Re: Question on EJB Finder

2001-03-13 Thread Jeff Hubbach
One approach you could take would be to change the array to a list with the java.util.Arrays.asList() call. Then in your select query you would have a list that you could use in your where clause as follows: select * from table where ownerid in ($1); so your call to findByOwner would look

Question on EJB Finder

2001-03-12 Thread Nevin Ng
Hi there, I'm now working on the ejb finder methods with orion, I have some basic experience with it already and know how to do some basic declaration such as sub-select finder, etc. I know that orion will map arg1 to $1, arg2 to $2 and so on, but how about if I want to pass an array to the