[appengine-java] Add payment - Wallet?

2012-02-14 Thread ChrisX
Hi there, I have a site where I need payment for extract of date - anyone know how to do this? Thanks -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this discussion on the web visit

[appengine-java] GAE + Cloud SQL + Hibernate

2012-02-14 Thread lisandrodc
Does someone know a simple example application GAE with Hibernate and Cloud SQL? Supposedly Cloud SQL support. (Forming:hibernate.cfg.xml, working with MySQL locally or Cloud SQL in Server) The link: https://developers.google.com/cloud-sql/ It does not mention anything with regard to Hibernate.

Re: [appengine-java] GAE + Cloud SQL + Hibernate

2012-02-14 Thread Paul Ford
Hey Lisa as far as I can tell Hibernate is not supported by GAE. This is documented on the GAE Java Whitelist. Furthermore, JPA and JDO are supported so this should provide all the ORM you need. regards paul On Tue, Feb 14, 2012 at 5:33 AM, lisandrodc lisandr...@gmail.com wrote: Does someone

Re: [appengine-java] GAE + Cloud SQL + Hibernate

2012-02-14 Thread Paul Ford
Ikai, This is great so Hibernate on GAE works for Cloud SQL but not Datastore. I understand. Thanks paul On Tue, Feb 14, 2012 at 11:57 AM, Ikai Lan (Google) ika...@google.comwrote: Hibernate works. I've gotten Cloud SQL to work with Hibernate ... the article has just been pending for some

Re: [appengine-java] GAE + Cloud SQL + Hibernate

2012-02-14 Thread Ikai Lan (Google)
That's right. When working with the datastore, it's probably best to understand it first by learning the low-level API. There's a trap when you start trying to think of the datastore relationally - do not do this. -- Ikai Lan Developer Programs Engineer, Google App Engine plus.ikailan.com On

[appengine-java] GQL return no result for query that use User as a condition.

2012-02-14 Thread Azlan
Hi All, I tried to run the GQL query in the Data Viewer (appengine.google.com) but it returns no result. Please see the following GQL and the JDO class below. Any hint what I did wrong? For example, SELECT * FROM Plan WHERE USER='emailaddr...@gmail.com' Where Plan is a JDO class, like the

[appengine-java] Re: How to display user name beside email address!

2012-02-14 Thread RAJ
If someone has got solution, please share!!! Thanks, Raj On Feb 1, 9:45 pm, RAJ er.rajes...@gmail.com wrote: Hi All, I am trying to figure out some way to display user name beside showing email address on my home page! I am using below code as suggested on app engine docs: Hello, +

[appengine-java] Re: GAE + Cloud SQL + Hibernate

2012-02-14 Thread lisandrodc
Thanks Ikai! Has it some simple example with GAE and Cloud SQL? I did not find in Internet. Thanks and regards Lisandro On 14 feb, 15:15, Ikai Lan (Google) ika...@google.com wrote: That's right. When working with the datastore, it's probably best to understand it first by learning the low-level