no find givin text search this code:
please send code who is find text search code.


this code search find full name:




        PersistenceManager pm = PMF.get().getPersistenceManager();
        Query query = pm.newQuery(Candidate.class);
        query.setFilter("Name == pName");
        query.declareParameters("String pName");
        List<Candidate> list =
(List<Candidate>)pm.newQuery(query).execute(name);

        return (List<Candidate>) pm.detachCopyAll(list);

-- 
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.

Reply via email to