Questions tagged [objectdb]

Fast Object Database for Java - with JPA/JDO support

ObjectDB is a powerful object oriented database management system (ODBMS). It is compact, reliable, easy to use and extremely fast. ObjectDB provides all the standard database management services (storage and retrieval, transactions, lock management, query processing, etc.) but in a way that makes development easier and applications faster.

ObjectDB Database Key Features:

  • 100% pure Java Object Oriented Database Management System (ODBMS).
  • No proprietary API - managed only by standard Java APIs (JPA 2 / JDO 2).
  • Extremely fast - faster than any competitive JPA / JDO product.
  • Suitable for database files ranging from kilobytes to terabytes.
  • Supports both Client-Server mode and Embedded (in process) mode.
  • Single JAR with no external dependencies.
  • Database is stored as a single file.
  • Advanced querying and indexing capabilities.
  • Effective in heavy loaded multi user environment.
  • Can easily be embedded in applications of any type and size.
  • Tested with Tomcat, Jetty, GlassFish, JBoss and Spring.

See ObjectDB's features in more detail...

106 questions
0
votes
1 answer

How to use ObjectDB properly in spring boot application?

I have a spring boot application with objectdb embedded database. I am manually handling connection and transaction operations as described at http://www.objectdb.com/java/jpa/persistence/overview Below is a sample code that I am using: (taken from…
Abdullah Arslan
  • 271
  • 1
  • 3
  • 5
0
votes
1 answer

Joining of two table in objectDb

I have two table in objectDb employee and address, i want to join two tables and generate third table like emp_add. Employee.java @Entity public class Employee { int empid; String empname; private Set
address; public…
0
votes
0 answers

JPQL query for 2 conditions with 'and' operator

I have to search among the users who are active and also with a particular keyword. I have User and User_personal classes where I don't have status in user_personal class so I used search to User_personal via User because there is a Activeusers…
0
votes
1 answer

remove object from database objectdb java

Let's say I have this two classes: @Entity public class A { @GeneratedValue @Id Integer aNum; ArrayList bS; public A(){ bS = new ArrayList(); } public void addB(B b){ bS.add(b); …
AwesomeGuy
  • 537
  • 1
  • 6
  • 17
0
votes
1 answer

objectDB: How to retrieve a class containing OneToMany

I have been all day trying to solve this. I have read multiple sites and documentation, but I can go through this. I'm using Java with ObjectDB. I have a clase named Pedido, that have a reference ManyToOne to a clase Cliente. @Entity public class…
0
votes
1 answer

How to make a list (containing of objects) persistent

First of all, as you can see, I work in Java and specifically in NetBeans IDE. So, I have a class Person that extends two classes : Trainer, and Athlete. In the main, I create a new ArrayList list = new ArrayList(); and then, i fill the list with…
user501625
  • 27
  • 1
  • 4
0
votes
1 answer

Glassfish/Payara: why might deployment of a large web app to Glassfish-4.1.1 (or Payara Server 4.1.1.163) take 5 times longer than to Glassfish-4.1

Mac OS X: Yosemite 10.10.5 Until recently I have been using: NetBeans8.1beta Glassfish4.1 Mojarra 2.2.7 I have recently investigated using: NetBeans8.1 Glassfish4.1.1 Mojarra 2.2.12. With a very large JSF web app (with ObjectDB as JPA persistence…
0
votes
2 answers

OrientDB: Creating Graph-database through HTTP-API

It seems it is only possible to create document-type databases via the HTTP-api. The documentation omit's information about whether the database will be created as a graph or a documentdatabase, but when creating a vertext, i get the…
Julian
  • 1,050
  • 1
  • 12
  • 23
0
votes
1 answer

ObjectDB Select query with too few parameters

I'm trying to populate a tsp page based on what parameter was passed to it. Currently I'm using the title of the blog post, I don't like this but I wanted proof of concept and had difficulties obtaining the object id. So, I'm temporarily passing…
null
  • 3,469
  • 7
  • 41
  • 90
0
votes
1 answer

ObjectDB Connection in Eclipse

I am very new to the ObjectDB. The reason I am trying to use this is to create desktop java application using embedded database. In other words, I ultimately want to give my friend a runnable jar file alone so he can access the database in javaFX…
Rin
  • 99
  • 1
  • 3
  • 6
0
votes
2 answers

No matching results for a unique query (error 782)

This code keeps throwing an error because there aren't any values present in the database: public Foo getFoo(Parent p1, Parent p2) { EntityManager entityManager = entityManagerFactory.createEntityManager(); CriteriaBuilder criteriaBuilder =…
user1191027
0
votes
1 answer

Is ObjectDB JPQL different from normal JPQL

I was discussing with someone about comparisons in JPQL, I gave him this link, http://www.objectdb.com/java/jpa/query/jpql/comparison, I think that ObjectDB uses the normal JPQL and so it sufficed the question. But someone told me that it is…
Rika
  • 768
  • 1
  • 5
  • 16
0
votes
1 answer

objectdb : update child set<> of the parent after remove one child doesn't work

In my application I have two entity Person and Activity @Entity public class Person { . . . @OneToMany(cascade=CascadeType.ALL,fetch=FetchType.EAGER,orphanRemoval=true) Set a; // getters setters constructors } ...…
0
votes
1 answer

JPA Query performance issue with ObjectDB

we have big problems with query performance in ObjectDB, this is our code. Any help would be appreciated. First version of query gives result in 50ms for first 40 records from database but second version which queries 40+ records gives 19 seconds.…
dilindul
  • 13
  • 3
0
votes
1 answer

How to deploy an Objectdb project with Jboss AS 7?

I'm having troubles to deploy projects that use ObjectDB in Jboss AS 7 WildFly. for the start I used objectDB tutorial project which originally designed to Glassfish open source edition: http://www.objectdb.com/tutorial/jpa/ee but it kept telling me…
DreckGuy
  • 1
  • 2