> query.setFilter("aliases == alias");
That is invalid JDOQL syntax; the spec is the spec and JDOQL uses Java
syntax.
If you have a collection field then the filter should be
aliases.contains(:alias)
The poster put the colon in front of a field name (wrong), and
declared a parameter as a variable (wrong).
--
You received this message because you are subscribed to the Google Groups
"Google App Engine for Java" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-appengine-java?hl=en.