|
If a query has multi results, and use:
while ( results.hasMore() )
{
MyClass myObj = (MyClass) results.next(); ....
}
to get the result. I found the first result can not be
released and some attributes will be kept to the second result.
How do I release the previous result?
|
