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...

103 questions
1
vote
2 answers

could not find http://www.objectdb.com/eclipse

In eclipse when i am going to install objectDb data Source Driver like: help-->Install New Software...-->then i am adding url: http://www.objectdb.com/eclipse. it gives the error like: "could not find http://www.objectdb.com/eclipse" so i am…
1
vote
1 answer

Object db passing an Object as parameter

I have been using JSF, JPA and MySQL with EclipseLink for 5 years. I found that I want to shift to Object db as it is very fast specially with a very large dataset. During migration, I found this error. In JPA with EclipseLink, I passed objects as…
Buddhika Ariyaratne
  • 1,902
  • 3
  • 44
  • 79
1
vote
2 answers

Populating JComboBox with TypedQuery does not show Entitys name correct

I want get the name of each object in this return list, but the output is an array of Object[], and this show entitys.Categoria[id=1] in my JComboBox control. I not understand this. Please help me! This is my code: public List
1
vote
1 answer

What do I need to keep in Proguard to run ObjectDB?

I am using Proguard to minimize the size of my shaded/uber Jar. This was working great until I included a dependency on ObjectDB. What do I need to keep to make ObjectDB work? I am getting the following output when calling…
Nathan
  • 6,095
  • 6
  • 42
  • 63
1
vote
1 answer

Use database in embedded-server mode outside the `$objectdb` home directory

I'm trying to setup ObjectDB. I am able to create a database and view it with the explorer, using the embedded-server mode to be able to keep the explorer open while running my program. This all works fine, when my database is in the $objectdb/db/…
Abby
  • 740
  • 2
  • 14
  • 25
1
vote
1 answer

JPQL ordering the search results, using ObjectDB

I am facing simple problem with searching entities by some (sub)string, which they might contain. E.g. I have users with u_name as "rags","mechrags","meragsch" and I will enter to search window "rags" and I used the following query for searching…
1
vote
1 answer

Using REST via GlassFish server- How do I allow updates on a list using HTML input and return a JSON object?

I am using GlassFish 4.1, using REST services within my web.xml (using JAX-RS,) and running queries on my temporary ObjectDB database. I need the input to by checked and return a JSON object with my desired information. I have tested the entire…
Jason V
  • 593
  • 1
  • 8
  • 27
1
vote
2 answers

How can you pack ObjectDB in a runnable JAR file?

I wanted to know if it is possible to include an ObjectDB database file .odb in a runnable JAR. The method: EntityManagerFactory emf = Persistence.createEntityManagerFactory(path); takes a String path as an argument and not a URL. This means that…
fornit
  • 59
  • 8
1
vote
0 answers

what is the purpose of @Edge and @Vertex annotation in OrientDB?

I saw these annotations on Spring Data Orientdb project and I'm wondering if I can use it on java pojo objects to create vertices and relationships. The scenario will be something like that: @Vertex public class User{ @Edge public class Follow…
1
vote
1 answer

Open ObjectDB explorer whilst running the tomcat server / instance

I'm new to ObjectDB and not sure if I've done something wrong here but I'm getting a couple of issues I'm hoping the community can help me with. First is this annoying inability to view the db in the explorer when the server is running. If the…
null
  • 3,221
  • 6
  • 32
  • 74
1
vote
2 answers

UserException: Attempt to open odb database file that is currently in use by another process

I have an application which runs correctly in Netbeans IDE but after building it, it won't just run sometime, the app stop responding to event at a particular point. I was able to reproduce this issue while running the jar file in command line and I…
olyjosh
  • 381
  • 4
  • 14
1
vote
1 answer

deploying ejb-module for ObjectDB fails: PersistenceProvider not found

I have two almost identical projects (both created with maven, both very simple) where one deploys without any problems, the other gives me a PersistenceException: javax.persistence.PersistenceException: JBAS011466: PersistenceProvider…
GameDroids
  • 5,338
  • 6
  • 34
  • 54
1
vote
1 answer

Attempt to store an instance of a non persistable type com.objectdb.jpa.criteria.Expressions$h (error 303)

I'm trying to do a select using a few simple where conditions but I keep getting the exception Attempt to store an instance of a non persistable type com.objectdb.jpa.criteria.Expressions$h (error 303) public Person read(String surname, String name,…
ThreaT
  • 3,644
  • 13
  • 58
  • 97
1
vote
1 answer

object db add compiste index doen't work

I try to add compostite Index in enttiy but not work following error got : [error] application - message= Unexpected database state: BTree 49 is not found, cause= [ObjectDB 2.5.4] javax.persistence.PersistenceException Unexpected database state:…
ASHISH
  • 45
  • 6
1
vote
1 answer

how to adding index on Map fields in entity using object db

i want to add index in map attribute i doen't have any idea about adding index in map attribute i have refer objectdb site link but i doesn't find soultion @index is enough for added index for example: @Entity @Table(name =…
ASHISH
  • 45
  • 6