[appengine-java] Re: The index for this query is not ready to serve

2010-06-07 Thread Manjoor
Jun 2010, at 21:28, Manjoor wrote: Just uploaded an app and got the error Uncaught exception from servlet com.google.appengine.api.datastore.DatastoreNeedIndexException: The index for this query is not ready to serve. See the Datastore Indexes page in the Admin Console..      datastore

[appengine-java] Re: The index for this query is not ready to serve

2010-06-07 Thread Manjoor
? On 5 Jun 2010, at 21:28, Manjoor wrote: Just uploaded an app and got the error Uncaught exception from servlet com.google.appengine.api.datastore.DatastoreNeedIndexException: The index for this query is not ready to serve. See the Datastore Indexes page in the Admin Console

[appengine-java] The index for this query is not ready to serve

2010-06-05 Thread Manjoor
Just uploaded an app and got the error Uncaught exception from servlet com.google.appengine.api.datastore.DatastoreNeedIndexException: The index for this query is not ready to serve. See the Datastore Indexes page in the Admin Console.. datastore-index kind=UserMaster ancestor=false

[appengine-java] Like query in google datastore

2010-04-01 Thread Manjoor
I have a simple java class with following attributes Candidates.java name skills education currentEmployer I need app-engine java equevalent code of the following SQL query Select * from Candidates where (name like '%searchcontent%') OR (skills like '%searchcontent%') OR (education like

[appengine-java] Re: Editing records in datastore (using JAVA)

2010-02-19 Thread Manjoor
datanucleus, I have created SMSUser class like this @PersistenceCapable(identityType = IdentityType.APPLICATION) public class SMSUser { @PrimaryKey @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY) public Key UserId; @Persistent public User sUser; @Persistent

[appengine-java] Re: Editing records in datastore (using JAVA)

2010-02-19 Thread Manjoor
Dear Alexander Arendar , I have tried it. My listing deleting and adding works fine... Just getting stuck in editing part.. On Feb 19, 1:53 pm, Alexander Arendar alexander.aren...@gmail.com wrote: Hi Manjoor, you should also call after all these pm.close() and you'll see the result :) JDO

[appengine-java] Re: Editing records in datastore (using JAVA)

2010-02-19 Thread Manjoor
datanucleus, Please can you show me how a setter tell JDO that it is called and JDO need to update it??? I am sorry but i am new to java. (Just for app-engine) On Feb 19, 1:49 pm, datanucleus andy_jeffer...@yahoo.com wrote: PS: I have added pm.close(); after pm.makePersistent(u); still it

[appengine-java] Re: Editing records in datastore (using JAVA)

2010-02-19 Thread Manjoor
Dear Sushama Khadilkar, I am trying my hand in JDO..I have not thought to using JPA yet On Feb 19, 12:10 pm, Sushama Khadilkar sush.khadil...@gmail.com wrote: If you want to update the record using EntityManager , then just use em.merge(Object). This the link to the

[appengine-java] Editing records in datastore (using JAVA)

2010-02-18 Thread Manjoor
I have been searching for sample java program to add, edit and delete records. I found many example showing how to add and delete records but not a single about editing. Do anyone have a sample source link to show how to edit a record ??? -- You received this message because you are subscribed

[appengine-java] Re: Editing records in datastore (using JAVA)

2010-02-18 Thread Manjoor
again with the same ID to overwrite it. See:http://code.google.com/appengine/docs/java/datastore/creatinggettinga... I believe JPA has an update feature, but if you're new to it I suggest JDO since it has better documentation in GAE. Jake On Feb 18, 10:55 am, Manjoor manjoora...@gmail.com