开发者

What does ":P" mean in a JDO query

开发者 https://www.devze.com 2023-01-11 22:11 出处:网络
I am using JDO on google app engine. Each \'Employee\' has a \'key\'. I have a set of keys and wanted to retrieve all Employees whose key belongs to this set.

I am using JDO on google app engine. Each 'Employee' has a 'key'. I have a set of keys and wanted to retrieve all Employees whose key belongs to this set.

So I implemented it using the 'contains()' filter as specified here. The code works fine and looks like this -

List<Key> keys = getLookupKeys(....) ..//Get keys from somewhere.

Query query = pm.newQuery(Employee.class,":p.contains(key)"); //What is ":P" here?
List<Employee> employees = (List<Employee>) q.execute(keys); //This correctly give开发者_StackOverflow中文版s me all I want

All that I wonder is what is this ":P" in this query? The Employee object does not have any field named 'p' neither my query declares any such parameter. So what does this 'p' point to? Does 'p' has any special meaning?


I believe it's mapping an implicit input parameter. As there's only one parameter, you don't need to explicitly call setParameter, you can just use it. I believe it would have been okay as:

Query query = pm.newQuery(Employee.class,":keys.contains(key)");
List<Employee> employees = (List<Employee>) q.execute(keys); 

which might be clearer.

See the "implicit parameters" part of the Apache JDOQL docs for another example.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号