Questions tagged [datanucleus]

DataNucleus AccessPlatform is an implementation of the JDO and JPA API specifications for Java object persistence, as well as providing a REST API. It is fully standards-compliant, and supports persistence to RDBMS, ODBMS, documents (XML, Excel, ODF), web-based (JSON, Amazon S3, GoogleStorage), map-based (HBase, Cassandra), document-based (MongoDB), graph-based (Neo4j) as well as some others (LDAP).

DataNucleus AccessPlatform is an implementation of the JDO and JPA API specifications for Java object persistence, as well as providing a REST API. It is fully standards-compliant, and supports persistence to RDBMS, ODBMS, Documents (XML, Excel, ODF), Web-based (JSON, Amazon S3, GoogleStorage), Map-stores (HBase, Cassandra), document-based (MongoDB), graph-based (Nep4j) as well as some others (LDAP).

890 questions
-1
votes
2 answers

Find by multiple ids in datastore using jpa 2.0

Here is my JPA query: String jpql = "SELECT a FROM Account a WHERE a.id IN :list"; TypedQuery q = mgr.createQuery(jpql, Account.class); q.setParameter("list", list); return q.getResultList(); Here is the error log: Cannot find type of…
Katedral Pillon
  • 14,534
  • 25
  • 99
  • 199
-2
votes
1 answer

How to store recursive object in database?

How can I store an object that has references to other objects of the same class? I have tried a lot of ways to doing it with annotations and XML but all of them have failed. In the best cases, I get the following error: WARNING: Insert of object…
Facon
  • 679
  • 2
  • 7
  • 21
-2
votes
1 answer

DataNucleus type converter: JPA 2.1 compliant?

Is DataNucleus (latest 5.1.1) JPA 2.1 compliant? JPA 2.1 supports @Converter. But DataNucleus has its own way (as extension) ignoring JPA standard: http://www.datanucleus.org/documentation/extensions/type_converter.html UPDATE The same code with…
eastwater
  • 4,624
  • 9
  • 49
  • 118
-2
votes
1 answer

JPA Native Query MongoDB

Does Datanucleus JPA have support for MongoDB For example: entityManager.createNativeQuery("db.Movie.find()");
-2
votes
1 answer

Datanuclues With Hbase Not Working With Collections Via JPA

Has anybody any experience with HBase usage with Datanucleus via JPA. I'm struggling to get Datanucleus to fetch collections for me from the Datastore. Any pointers would be much…
Ravindranath Akila
  • 209
  • 3
  • 35
  • 45
1 2 3
59
60