This appears fixed since late last week. So, all is well. Thanks again.
On Mon, Jun 29, 2009 at 4:48 AM, Vince Bonfanti<vbonfa
...@gmail.com> wrote:
> If you can send me a complete testcase to reproduce the problem I'll take a
> look at it. My guess is it'll be something easy to fix.
> Vince
> On Mon, Jun 29, 2009 at 6:02 AM, Brad B. <at...@verizon.net> wrote:
>> Using google app eninge, I'm returning a List<Child> from a JPA
>> entitymanager query.
>> em.createQuery("select from " + Child.class.getName() + " where user =
>> :k")
>> q.setParameter("k", parentkey);
>> List<Child> results = q.getResultList()
>> return results;
>> setting this on my cfm using the following works:
>> <cfset children = dao.getParentsChildren(myparentkey)>
>> And if i do isArray(children) OpenBD returns true.
>> However, when i try a cfdump on the children object or just
>> arraylen(children) OpenBD gives me a nasty yellow Bluedragon Server
>> error.
>> Other JPA queries work fine btw (if i set the query to return a single
>> result for example).
>> It's only when i try to return a List<Child> that it fails. The
>> horrid thing is I'm not even getting a stack trace.
>> Is there any way I can debug this or somehow recover from this
>> Bluedragon Server error?