I am pretty naive to hbase and JDO. I was trying to use

Query q = pm.newQuery(MyClass.class, "id == " + taskId);
List<MyClass> taskList = (List<MyClass>)q.execute();

But to my disappointment the list I am receiving is blank. although the taskId in the argument is already present.

Any kind of help would highly appreciable.

Thanks in advance!!

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

If fetching an object by id then would make way more sense to call

pm.getObjectById(...)

and if using a query, it would be normal to look at the log

link|improve this answer
feedback

try

taskList = (List) pm.detachCopy(taskList);

after your code

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.