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

2010-06-06 Thread Manjoor
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

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

2010-06-06 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 Index

[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.. any idea? -- You received this message

[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 '%sea

[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 wrote: > If you want to update the record using EntityManager , then just use > em.merge(Object). > This the link to the > Example::http://www.javabeat.net/article

[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 wrote: > > PS: I have added pm.close(); after pm.makePersistent(u); > > still it does not update the r

[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 wrote: > Hi Manjoor, > > you should also call after all these pm.close() and you'll see the result :) > JDO p

[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 pu

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

2010-02-18 Thread Manjoor
PS: I have added pm.close(); after pm.makePersistent(u); still it does not update the record... I have read most of the article of app-engine and datastore.. On Feb 19, 10:44 am, Manjoor wrote: > Thanks for the reply but it does not work. Have a look at this. > > I have checked it in

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

2010-02-18 Thread Manjoor
t changed and updates accordingly) or you just > persist the object 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

[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 to