ObjectDB Database Search

1-50 of 98 results

jakarta.persistence.EntityManager.refresh(Object)

Jakarta Persistence (JPA) Method in jakarta.persistence.EntityManager void refresh (    Object entity ) Refresh the state of the given managed entity instance from the database ... an association marked cascade= REFRESH . Parameters: entity - a managed entity instance Throws

jakarta.persistence.EntityManager.refresh(Object,Map)

Jakarta Persistence (JPA) Method in jakarta.persistence.EntityManager void refresh (    Object entity ,    Map properties ) Refresh the state of the given managed entity instance ... = REFRESH . If a vendor-specific property or hint is not recognized, it is silently ignored. Parameters

jakarta.persistence.EntityManager.refresh(Object,LockModeType)

Jakarta Persistence (JPA) Method in jakarta.persistence.EntityManager void refresh (    Object entity ,    LockModeType lockMode ) Refresh the state of the given managed entity ... = REFRESH . If the lock mode type is pessimistic and the entity instance is found but cannot be locked

jakarta.persistence.EntityManager.refresh(Object,LockModeType,Map)

Jakarta Persistence (JPA) Method in jakarta.persistence.EntityManager void refresh (    Object entity ,    LockModeType lockMode ,    Map properties ) Refresh the state ... cascades to every entity related by an association marked cascade= REFRESH . If the lock mode type

jakarta.persistence.EntityManager.refresh(Object,RefreshOption...)

Jakarta Persistence (JPA) Method in jakarta.persistence.EntityManager void refresh (    Object entity ,    RefreshOption... options ) Refresh the state of the given managed ... lock mode. This operation cascades to every entity related by an association marked cascade= REFRESH

jakarta.persistence.CacheStoreMode.REFRESH

Jakarta Persistence (JPA) Enum Constant in jakarta.persistence.CacheStoreMode REFRESH Insert/update entity data held in the cache when read from the database and when written to the database. Force refresh of cache for items read from database. Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.CascadeType.REFRESH

Jakarta Persistence (JPA) Enum Constant in jakarta.persistence.CascadeType REFRESH Cascade the refresh operation Since: Jakarta Persistence (JPA) 1.0

Retrieving JPA Entities

Chapter 4 . Retrieval by refresh You can reload managed objects from the database by using the refresh method: em. refresh (employee); The content of the managed object in memory, including any ... by another EntityManager since it was retrieved. The refresh method throws

JPA Runtime Tuning & Configuration

, lock , and  refresh ) override all higher-level defaults for that call. The  find , lock , and  refresh methods have variable argument versions that take one or more instance ... , RefreshOption . Pass as an argument to lock() , find() , or refresh () . Pessimistic lock scope

EntityManager.refresh takes a long time

EntityManager. refresh takes a long time for entity object Person in this code:     ... (Level.INFO, "begin refresh for person = " +            ... ; em. refresh (person);         logger.log(Level.INFO, "end

Is it possible to remove parent/child entities without refresh?

) method to remove a child entity a entityManager. refresh (parentEntity) is necessary in order to have an updated parent/child object tree in memory. But entityManager. refresh is too slow for our project. Do you know a way to remove a child entity from a parent entity without a entityManager. refresh

JPA Shared (L2) Entity Cache

that are not already in the cache. CacheStoreMode . REFRESH : New data is stored in the cache, which refreshes entities that are already cached. The default setting is USE . You can change ... ", CacheRetrieveMode . BYPASS )); The difference between CacheStoreMode.USE and CacheStoreMode. REFRESH

Refreshing a dirty object causes permanent JDOOptimisticVerificationException

;             // Refresh the entity to ensure we have the latest version ... . refresh (toUpdate);                        ... ; } } In the tryToUpdate method, my goal is to: Retrieve the entity. Refresh it to reduce the chances

EntityManager refresh problem

Hi, in the following code you can see an example with EntityManager. refresh (). The example ... ; entityManager. refresh (simpleEntity1);             ... ;         wua Andreas Wurm The reason that the refresh operation has no effect in

Refresh Explorer

Feature requests: 1) shortcut key for Explorer data refresh 2) ability to set 'auto- refresh ' for explorer when run in client-server mode. ie: current view will refresh every n seconds. Thanks David   dmoshal David Moshal A new Refresh toolbar button and an accelerator key (Ctrl+R) were added in build 2.5.6_04. support Support

explorer feature request: ability to auto refresh

Request for feature: Ability to auto- refresh an explorer view, say at regular intervals of a few seconds. (at a minimum one ought to be able to manually refresh , for example the list of persistent ... but are now disabled - including editing, basic querying and manual refresh . support Support thanks, I

Feature request - ability to refresh an open database view in explorer

The ability to refresh view in explorer automatically. Fine if this is read-only. Extra points if you can do this with local databases as well as remote. dmoshal David Moshal ie: "Real-time" auto refreshing explorer views. dmoshal David Moshal alternatively, clicking on a class name gets

ObjectDB Explorer Refresh Button

Could this be implemented so that newly added/removed/updated data can be shown in the explorer by refreshing its contents? ThreaT Ashton Hogan A new Refresh toolbar button and an accelerator key (Ctrl+R) were added in build 2.5.6_04. support Support

Attempt to refresh a non managed entity object (error 635)

Just ran into a problem that I've not seen in 10 years of running ObjectDb: java.lang.IllegalArgumentException Attempt to refresh a non managed entity object (error 635) Nothing changed in my code ... David Moshal This error message indicates invoking refresh (explicitly or implicitly by cascading

Refresh data in application after database data has changed

a new Person object, he first refreshes his internal "cache" or internal "objects"? joelcraenhals Joël

JPA Optimistic and Pessimistic Locking

employee = em. find ( Employee.class, 1, LockModeType . PESSIMISTIC_WRITE ); Similarly, the refresh method can also receive a lock mode: em. refresh (employee, LockModeType . PESSIMISTIC_WRITE ); A lock ... . find ( Employee.class, 1, LockModeType . PESSIMISTIC_WRITE , properties); ... em. refresh (employee

Database Explorer

button clears the content of all fields in the window. Refreshing the cache When a database is open ... the view, use the File Refresh Data command to refresh the cache and the viewer windows. Using bookmarks

jakarta.persistence.EntityManager

. Some operations of this interface, including the methods lock , refresh , and find , accept ... and vendor-specific options: find and find accept FindOption s, refresh accepts RefreshOption s, and lock ... .0 void refresh ( Object entity ) Refresh the state of the given managed entity instance from

Managing JPA Entities

is retrieval by refresh , which always requires database access. The main role of the persistence context

JPA Exceptions

. This commonly occurs during EntityManager. refresh or EntityManager.getReference calls. Concurrency

JPA Listeners & Callbacks Annotations

the persistence context or refreshed . This is useful for initializing transient fields or performing post

jakarta.persistence.EntityNotFoundException

is accessed but the entity does not exist. Thrown when EntityManager. refresh is called and the object ... .getReference(Class,Object) EntityManager. refresh (Object) EntityManager. refresh (Object, LockModeType) EntityManager. refresh (Object, java.util.Map) EntityManager. refresh (Object, LockModeType, java.util.Map

jakarta.persistence.CacheStoreMode

to the second-level cache. REFRESH indicates that data must be written to the second-level cache ... REFRESH Insert/update entity data held in the cache when read from the database and when written to the database. Force refresh of cache for items read from database. Since: Jakarta Persistence (JPA) 1.0

OptimisticLockException

to be automatically updated in process A. So, do I need to refresh objects before using them? I ... - e.g. by invoking refresh . You may choose to do that only during a second attempt ... that, for every transaction, I need to handle the optimistic lock by manually refreshing each object? if so, it seems like

jakarta.persistence.CascadeType

=ALL is equivalent to cascade={PERSIST, MERGE, REMOVE, REFRESH , DETACH} . See Also: ManyToOne.cascade ... Persistence (JPA) 1.0 PERSIST Cascade the persist operation Since: Jakarta Persistence (JPA) 1.0 REFRESH Cascade the refresh operation Since: Jakarta Persistence (JPA) 1.0 REMOVE Cascade the remove operation

jakarta.persistence.RefreshOption

Jakarta Persistence (JPA) Interface jakarta.persistence.RefreshOption An option influencing the behavior of EntityManager. refresh . Built-in options control locking , cache interaction ... EntityManager. refresh (Object, RefreshOption...) Since: Jakarta Persistence (JPA) 3.2

NullPointerException using with "refresh" method

Occasionally I get this NPE on a refresh . This makes everything quite unreliable! Caused by: com ... .objectdb.jpa.EMImpl. refresh (EMImpl.java:749) at com.objectdb.jpa.EMImpl. refresh (EMImpl.java:687) at com.objectdb.jdo.PMImpl. refresh (PMImpl.java:976) at technology.tavla.misc.data.DefaultDataManager

Explorer Features - refresh + viewing open embedded database

Request for feature: Ability to auto- refresh an explorer view, say at regular intervals of a few seconds. (at a minimum one ought to be able to manually refresh , for example the list of persistent types). additionally, it would be useful to be able to view an embedded database (read only mode) via the explorer. dmoshal David Moshal

jakarta.persistence.LockModeType

refresh () ), or to Query.setLockMode or TypedQuery.setLockMode . Optimistic locks are specified using

Problem on JPA Merge Entity.

/) On this web page we can found 4 links. /testCreate /testUpdate / refresh /updateAllInDao   ... but in fact the statement has not been reloaded and if we " refresh " (next item) the new component ... we can see that the new component has been saved but not attached to the statement. refresh Retrieve statement

jakarta.persistence.CacheStoreMode.USE

Jakarta Persistence (JPA) Enum Constant in jakarta.persistence.CacheStoreMode USE Insert entity data into cache when read from database and insert/update entity data when written to the database: this is the default behavior. Does not force refresh of already cached items when reading from database. Since: Jakarta Persistence (JPA) 1.0

Cannot save or update entity on Spring App

(Language guest) { em.persist(guest); em.flush(); em. refresh (guest); return guest; }     ... method does not create a new entity, nor it refreshes with its new id. And the update method fails ... problems: the persist method does not create a new entity, nor it refreshes with its new id

explorer locks local database in readonly mode

process. do you think it's worth to improved this? if yes, isseu #39 ( refresh ) will be useful ... the database to see changes because refresh is not implemented). I think that this is exactly the requests of  issue #238  - support refresh + add the ability to view a database that is in use

Merge with Parent/Child entities not possible

, CascadeType. REFRESH })   private ParentEntity parent;   @Column   private String ... );   ParentEntity parentEntity = parentEntityQuery.getSingleResult();   entityManager. refresh ... .getTransaction().commit();   entityManager. refresh (parentEntity);   Assert.assertEquals(1

Cascading persistence through an inverse field

={PERSIST, REFRESH , MERGE}) private Set points = new HashSet (); public void addPoint(Point p ... , REFRESH , MERGE}) private Set pointCollections; ... } Scenario 1: PointCollection col = new ... automatically when the object is retrieved (or refreshed ) from the database after commit or flush

Query results are not up to date for entities, not primitives

When using the CriteriaBuilder to query, the loaded list are not refreshed according to the latest updates. But, when using the JPQL Query, the list are refreshed , and, when I querying for primitive fields like Strings, the list of primitives are loading refreshed too. Any variations

BeanCreationException in spring data JPA with objectDB

) at org.springframework.context.support.AbstractApplicationContext. refresh (AbstractApplicationContext ... .springframework.context.support.AbstractApplicationContext. refresh (AbstractApplicationContext.java:425 ... .AbstractApplicationContext. refresh (AbstractApplicationContext.java:425) at org.springframework.web.servlet

ManyToMany Set is null

={CascadeType. DETACH ,CascadeType. MERGE ,CascadeType. REFRESH }) @JoinTable(name="PERSON_CONTRACT ... = FetchType. EAGER , cascade={CascadeType. DETACH ,CascadeType. MERGE ,CascadeType. REFRESH }, mappedBy

java.sql.Time field off by 30 minutes

; //() Refresh read back         em. refresh (e);    

Exception makes the system unusable for several minutes

.TVS.b(TVS.java:105) at com.objectdb.o.TVS.b(TVS.java:94) at com.objectdb.jpa.EMImpl. refresh (EMImpl.java:746) at com.objectdb.jpa.EMImpl. refresh (EMImpl.java:687) at com.objectdb.jdo.PMImpl. refresh (PMImpl.java:976) at com.agile.hummingbird.CoreDaemon. refresh (CoreDaemon.java:566) at com.agile.hummingbird

new objects not available in mappedBy associations

automatically when the object is retrieved from the database again. Try to refresh the department ... is set to use FlushModeType.AUTO ). support Support What does this mean: "Try to refresh the department object" ? How does one refresh an object? If the mappedby tag maps to: SELECT e from EMPLOYEE e

Errors in log to repprt

.java:94) at com.objectdb.jpa.EMImpl. refresh (EMImpl.java:746) at com.objectdb.jpa.EMImpl. refresh (EMImpl.java:687) at com.objectdb.jdo.PMImpl. refresh (PMImpl.java:976) at com.agile.hummingbird.CoreDaemon. refresh (CoreDaemon.java:614) at com.agile.hummingbird.SS_ScheduledSlot.updateSlot(SS_ScheduledSlot

missing merger

.objectdb.jpa.EMImpl. refresh (EMImpl.java:759)     at com.objectdb.jpa.EMImpl. refresh (EMImpl.java:700)     at com.objectdb.jdo.PMImpl. refresh (PMImpl.java:989)     at com.agile.hummingbirdcore.CoreDaemon. refresh (CoreDaemon.java:801)     at com.agile

Tracking changes to new collections (in enhancement mode) after flush

= "uid") private String uid; @OneToOne (fetch = FetchType.EAGER, cascade = {CascadeType. REFRESH ... = {CascadeType. REFRESH , CascadeType.DETACH }) private HashMap mappingMap = new HashMap (1); (edited ... uid; @OneToOne (fetch = FetchType.EAGER, cascade = {CascadeType. REFRESH , CascadeType.DETACH }) private

spuriously objectdb objects have null references

from time to time we have in a multi threaded environment objects where all the references are null (i.e. references actions, childNodes), even after a subsequent refresh . we are using a separate ... that have not been loaded with null values. Detached objects cannot be refreshed . Does it happen