[appengine-java] Re: Issue with com.google.appengine.api.datastore.Text?

2009-11-03 Thread Tito George
Thanks, It is working. Is this an issue? Or is it specific to Text On Nov 3, 11:00 am, Rusty Wright rwright.li...@gmail.com wrote: What happens if you change @Persistent to @Persistent(defaultFetchGroup = true) ? Tito George wrote: Enviornment: Local I have a Text field in one

[appengine-java] Re: Issue with com.google.appengine.api.datastore.Text?

2009-11-03 Thread Rusty Wright
Beats me. It seems to be some sort of pixie dust you'll often need to apply. You don't need it for String, Long, Date, and a variety of other jdk classes, but I think you will need it for your classes. I don't understand why it's not used in the GAE web site's documentation. Tito George

[appengine-java] Re: Issue with com.google.appengine.api.datastore.Text?

2009-11-03 Thread Tito George
Thanks Rusty. I will keep this in mind.. On Nov 4, 12:13 am, Rusty Wright rwright.li...@gmail.com wrote: Beats me.  It seems to be some sort of pixie dust you'll often need to apply.  You don't need it for String, Long, Date, and a variety of other jdk classes, but I think you will need it

[appengine-java] Re: Issue with com.google.appengine.api.datastore.Text?

2009-11-02 Thread Rusty Wright
What happens if you change @Persistent to @Persistent(defaultFetchGroup = true) ? Tito George wrote: Enviornment: Local I have a Text field in one Persistent capable object, @Persistent private com.google.appengine.api.datastore.Text event_Description; I am sure that i am not setting