0
votes
0answers
26 views

JDO not fetching text field

I have an Employee class @PersistenceCapable(table = "employee") @PrimaryKey(name = "PK_employee") public class Employee{ @PrimaryKey @Persistent(primaryKey = "true", valueStrategy = ...
0
votes
2answers
39 views

Storing a multimap with jdo

How would one serialize an ArrayListMultiMap<String, String> with jdo in the best way. The preferred table structure would look something like owner_id, key (String), Value(String), order It ...
1
vote
1answer
188 views

Is it possible to intercept all DataNucleus' JDO SQL queries?

Assuming one has an operational Java application using DataNucleus's implementation of JDO to access a database, is it possible to intercept all SQL queries made to the database? The intention is to ...
0
votes
2answers
266 views

appengine datastore query escaping single quote (')

I have used javax.jdo.Query like here JDO for Google App Engine: escaping quotes. Yet, my query string with single quote (') keep getting exploded. Query query = pm.newQuery("select from " + ...
0
votes
1answer
92 views

Any SVN like database solutions\librarys which are opensource and work OK with Java?

I want to have my DB server opensource and capable of saving hystory of record changing. Meaning I do not want it to be way 2 complicated , I'd love to operate with it like with JDOs but with some ...
2
votes
1answer
2k views

Alternative strategy to query aggregation (“group by”) in google app engine datastore

App Engine Datastore cannot be queried for an aggregate result. Example: I have an entity called "Post" with the following fields: Key id, String nickname, String postText, int score I have many ...
0
votes
1answer
43 views

Using sets in JDO

I have a model which contains a java.util.Set object as a member. How do I persist this using JDO? Specifically, how do I define the XML in the .jdo file? class MyClass { Set<String> data; ...
0
votes
3answers
198 views

Can I execute SQL statements directly in a JDO environment?

I am using Datanucleus JDO on top of HSqlDb. I would like to execute the following SQL statement to tell HsqlDb to set the write delay to 0: "SET WRITE_DELAY 0" Is there a way I can do this from a ...