On Tue, 2004-01-13 at 20:21, Patrick Bakker wrote: > I?ve been trying to get the following select method code to work in > an EJB I call Product: > > /** > * @ejb.select > * signature="java.util.Collection > ejbSelectNameMatch(String nameMatch)" > * query="SELECT OBJECT(p) FROM Product p WHERE p.name LIKE ?1"
I've only done enough EJB-QL to get my basic finders working, and maybe the syntax is partially fluid, but all of my queries use "<bean> AS <alias>", e.g. "Product AS p". Is this the problem, and by the time it gets to the "?1" it's simply too confused to report the error correctly? Out of curiousity since I haven't used ejbSelect methods yet, why would you not just make that a finder? Don't you need a Product bean instance before you can execute a select method? Or am I misunderstanding select methods? David Harkness Sr. Software Engineer Sony Pictures Digital Networks (310) 482-4756 ------------------------------------------------------- This SF.net email is sponsored by: Perforce Software. Perforce is the Fast Software Configuration Management System offering advanced branching capabilities and atomic changes on 50+ platforms. Free Eval! http://www.perforce.com/perforce/loadprog.html _______________________________________________ xdoclet-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/xdoclet-user
