0
votes
1answer
28 views
Do gae datanucleus annotations modify our java code?
I placed this question in Google groups for gae java (http://groups.google.com/group/google-appengine-java/browse%5Fthread/thread/85dc9f10d7e12a3), but sometimes it takes a week for someone to bother …
0
votes
1answer
46 views
Troubleshooting DataNucleus JDO
I am using the Eclipse plugin for Google App Engine 1.2.6 and Web Toolkit 1.7.1
DataNucleus/JDO is driving me mad!
I suspect either my creates are silently erroring out before being written AND/OR …
1
vote
1answer
118 views
MySQL + Windows VISTA / 7 = Crashes with Eclipse RCP + Datanucleus app.
Hi there.
I'm having a big problem with MySQL + Datanucleus + Windows Vista / 7.
THE Problem is so SEVERE, the MySql Server Shuts Down!
PROBLEM OCCURS:
with DN 1.0.0.m3 + MySQL 5.1.x (LOCAL) + …
0
votes
1answer
66 views
Swap two elements in a list using JDO on Google Appengine
I have a TestEntity that has an ArrayList of ChildEntities. They are joined in a owned relationship. I want to
get the Entity from the datastore, update an int field in the child
entity, and then …
0
votes
2answers
66 views
Delete an entity by key without fetching it first in app engine (using JDO)
Is there a way to delete an entity without having to fetch it from the datastore first? I am assuming I already have the key or id for the entity.
I'm thinking of something like deleteObjectById that …
1
vote
1answer
129 views
Transitioning from Castor to JPA
I am trying to make my java application more standards compliant and one of the biggest issues i am facing is transitioning our ORM framework from Castor JDO to a JPA implementation (thinking either …
3
votes
3answers
394 views
How to turn off DataNucleus Enhancer while working with Google App Engine
I am working in Eclipse on a Google AppEngine Java code. Every time I save a java file, the DataNucleus Enchancer starts off "Enhancement of Classes". Its quite irritating since it takes away focus …
0
votes
1answer
202 views
Many-to-Many relationship in DataNucleus (JDO) doesn’t persist
Hi,
I don't manage to persist a many-to-many link with DataNucleus using JDO. I have two classes Book and Shop. This is the orm mapping file:
<?xml version="1.0"?>
<!DOCTYPE orm PUBLIC
…
2
votes
3answers
749 views
Problem using datanucleus enhancer in a maven google app engine project
I'm having a problem setting up datanucleus enhancer to use with a google app engine project. If I use the datanucleus eclipse pluggin everything goes well, but in my maven project I get a strange …
0
votes
1answer
171 views
Google DataStore not storing child objects
I have an entity Course that has a key to another entity (Document) inside.
@PersistenceCapable(identityType = IdentityType.APPLICATION, detachable="true")
public class Course{
@PrimaryKey
…
0
votes
2answers
231 views
DataNucleus Enhancer flakey?
I'm creating a GWT app in Google App Engine, and using Google data store. Does anybody else have the problem of the DataNucleus being flakey as all get out?
I can save a class, and DataNucleus will …
0
votes
1answer
106 views
DataNucleus: How do I automatically perform actions when commiting a transaction?
Consider having an application using DataNucleus with the following persistence structure:
You have a class that has two attributes like created (Date) and lastUpdate (Date): How do you …
0
votes
1answer
222 views
Persist java.util.Properties as serialized object using JDO/DataNucleus
The Google AppEngine docs say that I can persist serializable objects using JDO like so
import javax.jdo.annotations.Persistent;
import DownloadableFile;
// ...
@Persistent(serialized = "true")
…
