ObjectDB Database Search
151-200 of 200 resultsIndex causes increased memory usage Hello, In an effort to increase the speed of our queries with our embedded ObjectDB ... to the system? ================================= Today, we ran some more tests. We wrote a very stripped down version of our embedded ObjectDB ... of our embedded ObjectDB database application, that simply connects to the application that supplies | |
First query takes 4+ minutes to complete Hi, we are evaluating ObjectDB 2.5.1_04 in embedded mode hoping to replace SQLite in ... the application that uses the DB in embedded mode. So we basically start the application and let is stabilise ... information in the logs? 2. Do you have documentation on the best way to initialize ObjectDB in embedded mode | |
Exception after update of indices of Entity class. Could you describe the index change itself? The stack trace may indicate an issue with an embedded class ... of an embedded class? support Support Hello, here are my classes: @Indices ({ @Index ... "}) }) public class Event extends Entity { @ Embedded private | |
Should derived fields of an EmbeddedId be manually maintained by app code?. Purged DB Success b) With DEMO_MODE set to DemoMode.NO_ EMBEDDED _MAINTENANCE I ... to DemoMode.ALL_ EMBEDDED _MAINTENANCE I get an exception; Purged DB [ObjectDB 2.3.0_01] Unexpected ... , i.e. the correct mode in your test program is DemoMode.ALL_ EMBEDDED _MAINTENANCE. The exception | |
ObjectDB Explorer Exposes Username and Password How can I prevent my embedded database's username and password from being exposed by ObjectDB ... anyone from accessing my embedded database without knowing the username and password? billdotnet Bill Note that the username and password are for client-server mode. In embedded mode databases are accessible with no username and password. support Support | |
How to develop for a server license, etc. you may consider upgrading to a site licence. support Support So the embedded mode cannot be used with a server license? Kevin Kevin Pfaff Embedded mode can be used on the server machine ... license for each developer change from embedded to server-client Thanks, now we know | |
Integration using objectdb in embedded mode for now. Is it that big a performance difference vs server mode? dries ... . Regarding embedded mode vs client-server mode - see: https://jpab.org/ObjectDB/ObjectDB/ embedded /ObjectDB | |
Eclipse plugin problem (using ObjectDB as a separate bundle) with the MANIFEST.MF: Embedding images is currently enabled only for admin (this should be changed ... , but have you tried embedding ObjectDB in your plugin - using ObjectDB as a separate bundle is currently ... prepared source code for debugging). support Support It works with the embedded objectdb lib | |
Difficulty with the BIRT plugin that is embedded in the plugin (it will become more flexible when support of using ObjectDB as a separate ... is invalid or no connection to the server. Do you see a difference between using embedded mode or client/server mode? I understand that you are trying the tutorial. Does it work with embedded mode | |
ODB IndexActivation NullPointerException stops working and how a NullPointerException is thrown. If you use embedded mode please check ... ; - OK But we still need help to find a solution! If you use embedded mode Yes, we use the database in ... .6.9_07). You may be able to locate the thread in embedded mode and delay closing the database | |
ClassCastException of same object type. Are you embedding ObjectDB as suggested in this thread ? You may also try setting the current thread ... bundle. It is embedded as per the thread you mentioned. I will have a look at the thread context | |
Spring + Maven + persitence.xml Hi, I tested ObjectDB embedded and it is really fast! Everything worked out of the box. Maven: com.objectdb objectdb 2.4.3 Persistence.xml com.objectdb ... . How come I have class not found exception in embeded server but I do have in c/s? (sorry for long post | |
Failed to commit transaction: Attempt to commit a rollback only transaction client/server mode and go back to embedded ? dmoshal David Moshal Could you run the  ... -server mode to embedded mode is the solution. support Support In addition - the complete stack trace from | |
Mismatch client-server protocol prefix? The implementation hasn't changed at all. We only converted our WAR to a standalone runnable WAR with embedded ... weird. Maybe it is a conflict between embedded Tomcat / new Spring and ObjectDB. support Support | |
Missing (null) elements in eager loaded references children ; @ManyToOne private DataElement parent ; @Basic private String label ; etc... } Embedable ... . Inside the ErrorTest.java are two test which both fail because of missing embedded elements. Kevin | |
Join query problem with new statetment of objects - embedded /entity? lwalkowski Lukasz Walkowski The embedded / entity is merely a guess | |
TemporalType injection with Calendar using JPA I have ObjectDB JPA comsummed by a RESTful web service deployed on Tomcat. I am using an embedded object as a primary key, which has time fields which I have annotated with TemporalType ... ; And this is embedded in this Entity class @Entity @Access(AccessType.PROPERTY) public class Chart implements | |
multiple different applications access one odb file server you should be able to use ObjectDB in embedded mode to access the same database file ... the same database file, you have to use either client-server mode or embedded -server mode. support Support | |
How to package orm.xml when using EJB in WAR? for other persistence providers, e.g. EclipseLink, which can pick up the orm.xml from the jar file embedded in the war ... that the sequence generator isn't working when the EJB is embedded in a WAR file?   | |
errors on repair the configuration we are using the (unofficial) combined embedded /server mode. The problem occurs in the embedded | |
Does aggregate function "greatest" work on entity objects?() + " result = " + result); return result; } @Column(length=1024) private String text; @ Embedded private PersonData sender; @ Embedded private PersonData recipient; @ElementCollection(targetClass | |
Undeploying Glassfish web application does not disconnect from ObjectDB ObjectDB in embedded mode? Apparently undeploying a web application from GlassFish doesn't close the EntityManagerFactory , and consequently the ObjectDB database remains in use (and in embedded mode | |
Database server with an application Hi, I read the database server section of the manual - and it looks like it is not possible to connect to a Database embedded with an application from another application - is that correct? The way ... to it. Is that correct? Thanks EKK Emmanuel Keskes There is an undocumented feature, embedded server , that you can use. support Support | |
Error: Failed to write value of field X using reflection (oneToMany relation) Cliente. @Entity public class Pedido { @Id @GeneratedValue private long id; @ Embedded private ... , has nothing in special. Just a few variables. String, int, and an embedded class. The problem is that, when I | |
ObjectDB eclipse plugin) - this is something that the ObjectDB BIRT plugin doesn't have to handle. Anyway, the workaround of embedding the ObjectDB jar in ... requests with higher priority. support Support Anyway, the workaround of embedding the ObjectDB jar | |
com.objectdb.o.NLV cannot be cast to com.objectdb.o.RSV static final long serialVersionUID = 1L; @Column(length=1024) private String text; @ Embedded private PersonData sender; @ Embedded private PersonData recipient; @ElementCollection(targetClass | |
Searching lists within objects enum (more efficient). An alternative solution is to use embedded objects: @Entity @Index(members ... ; private String value; } Embedded objects are compared by content (and not by ID | |
Native ObjectDB Support for EnumSet ? Greetings ObjectDB team, Are embedded EnumSet objects faster to query than normal classes ? Does JPA/JDO offer native support to filter persistent objects by an EnumSet field's multi values ? For example: WHERE o.es == ES.A | ES.B | ES.C Thank you ! geekox86 Mohannad AlAwad Embedded enum | |
More Efficient Primary Keys Primary Key with two Longs b) Embedded Primary Key with two Longs c) Furthermore, as String ... ) requires instantiation of an additional Java object (the embedded key) so theoretically | |
Spring 4 setup Can someone provide an example of setup ObjectDB embeded to be used with Spring4? Existing examples is like for Spring3 and I can't figure how to use ObjecDB in Spring tutorial: https://spring.io ... , otherwise I will get some exception like: 'Cannot determine embedded database driver class | |
Memory error during commit, if @ElementCollection field contains many elements) is retrieved its full content, including embedded collections, is loaded from the database. Some content ... issue: Split the TCStep entity class, and move the large embedded collection into a new | |
@OrderColumn issue the OrderBy annotation, and if you are using an embedded collection (i.e. a collection which is not ... Support I'm sorry for the inconvenience and thank you for the tips. I'm going to give a try to the embedded collection. Martin1978 Martin Mihalev | |
Unexpected error when loading all entity instance about how you use ObjectDB, i.e. client-server or embedded mode, number of databases, hardware, operating ... : embedded mode (single process multi-threaded access), one database only, running inside a xen vm ... . Will you be able to try client-server mode instead of embedded mode in production for awhile | |
ObjectDB BIRT Driver Update. In the current implementation ObjectDB is embedded in the driver. Any 2.x version of the driver can work against any ObjectDB 2.x database file in embedded mode, since the database file format ... will not be embedded in it. This will enable further flexibility in using the driver with different | |
log entry and massive performance issues -- we are using objectdb in our application in embedded mode -- open explorer and connect via embedded server ... more details? The last point regarding killing an application by using embedded -server mode, is it related | |
Internal error one thread I was opening an embedded database, and then that thread crashed because of an exception ... the exception? You wrote that: In one thread I was opening an embedded database, and then that thread ... starts. It's not easily repeatable. You wrote that: In one thread I was opening an embedded | |
Out of Memory - Slow leak?" process which reads messages from the queue database and inserts these into an embedded "normal ... the "consumer" process is connected to 4 server-hosted databases and 9 embedded databases (the embedded | |
ObjectDB 2.0.4;detached embedded objects. Fixed a spring transformer (LoadTimeWeaver) problem. Fixed a class loader issue when using GWT/Jetty. Fixed a bug in using fields of embedded primary key in JPQL queries. | |
Use temporary files to enable very large transactions to empty the persistence context? Do you use embedded mode or client-server mode? If you were using ... embedded db. btc_es BTC EmbeddedSystems Can you post a heap dump, or at least relevant information | |
Lazy retrieval by access not working correctly I have a problem loading lazy associations by access/navigation with an @ Embedded attribute containing an @ElementCollection which is lazy loaded. I'm not sure if the same problem exists ... snippets which should reproduce the problem. public class Locale extends BaseEntity { ... @ Embedded | |
Better support for ObjectDB in Eclipse Plugins ObjectDB can be used in Eclipse plugin, but currently it has to be embedded in the plugin and cannot be used from other plugins in which it is not embedded . More details can be found in the following forum threads: ObjectDB eclipse plugin Eclipse plugin problem (using ObjectDB as a separate bundle | |
com.objectdb.o._PersistenceException: Failed to locate set method for field property using reflection appreciated. Code works fine when running with ObjectDB embedded , but throws the exception randomly ... with ObjectDB embedded , but throws the exception randomly when application accesses ObjectDB in  | |
cannot delete objects after crash (see issue 2283) support an automatic recovery, too ? - is the replication possible using embedded mode ... using embedded mode ? Currently replication is only supported in client-server mode | |
com.objectdb.o.InternalException: null? What happens when you access the database directly in embedded mode? Could you please check ... embedded mode. The result of the Doctor check is: % java -cp bin/objectdb.jar com.objectdb.Doctor db | |
database corrupt (old link) If you use ObjectDB in embedded mode (similarly to Access, which is discussed in ... system is shared). Accessing ObjectDB in embedded mode directly from two processes is fatal. Regarding | |
Tracking changes to new collections (in enhancement mode) after flush, relying on automatic invocation of change events, including in embedded collections. We should check ... a workaround you may try add a change to a direct field in the embedded object. support Support If we touch | |
ObjectDB 2.4.2 (unset values in new fields) correctly. Fixed a bug in clearing embedded objects during merge. Added automatic cascading through embedded objects. Fixed a bug in clearing persistent properties of primitive | |
ArrayIndexOutOfBoundsException with enhanced Entity only with an embeddable entity embedded within another embeddable entity like: @Embeddable class Embed ... Alexander Adam This bug (in managing nested embedded objects) was fixed in version 2.2.9. Thank you for your report. support Support | |
InternalException when using MEMBER OF on a large list in a query that combine large objects with long primary keys. In such objects the keys may not be embedded in ... with two Longs b) Embedded Primary Key with two Longs c) Furthermore, as String (but reduced | |
boolean field flips after schema update (in class) of another field public class Configuration { @Id @GeneratedValue private long id; @ Embedded private Application ... . If this is a database that you can share with us we can check it. support Support We have embedded |