ObjectDB Database Search

101-124 of 124 results

An InternalException occurs when gets an result list

with query option: query.setHint("objectdb.result-fetch", " LAZY "); btc_es BTC EmbeddedSystems The exception

Missing Data on Retrieval (0, null values)

.       harald77 Harald The null and 0 values may be the result of lazy loading

composite index not used in query

we defined a composite index for class Action: @Index(name="ssst",members={"startDate","state","subType","type"}) and an index for the OneToMany @OneToMany(fetch=FetchType. LAZY ) @Index public List objectsInCharge = new ArrayList (); on running a query like select count(a) from Action a JOIN

Why the internal error was thrown?

("objectdb.result-fetch", " LAZY ");     return q.getResultList(); } btc_es BTC

An ArrayIndexOutOfBoundsException with nested entities and enhanced entities

{ @ManyToOne (targetEntity = DataTypeImpl.class, cascade = {CascadeType.ALL }, fetch = FetchType. LAZY

Slow searching with two indexes

with the new index with no need for further data retrieval. Another option that can be checked is running the query with lazy fetch . support Support

Beginners questions

") @GeneratedValue(strategy = GenerationType.AUTO) private Long id; @OneToMany (fetch=FetchType. LAZY ,cascade

Relationships and tracking changes

= GenerationType.AUTO) private Long id; @OneToMany (fetch=FetchType. LAZY ,cascade=CascadeType.ALL, mappedBy

Does ObjectDB support @Parent for @Embeddable reference to parent?

, rather than the annotated fields, as shown on the first post. Sorry, excuse lazy copy-and-paste

Merge on detached entities

are the exact rules how to attach detached entities when the entity manager uses lazy loading

Does ObjectDB create one instance of each entity class on (web app) load ?

a (mostly) LAZY -only fetch policy across the system. Most of my EJB methods for querying are configurable

Fetch Set from DB only works on debug mode

, but I think still being better than using non- lazy data. elnll002 Facundo Curti

ObjectDB JPA 2.2 support ( java.util.stream.Stream )

. Meanwhile, you can run the query in LAZY mode , and then data from the database will be retrieved in batches

Annotate a Map field with @ElementCollection or @Basic

is faster at runtime. It could be due to the different default fetch value ( LAZY for 

Performance issue in a query due to internal calls visitRefs and visitKeyRefs

.class, fetch = FetchType. LAZY ) private List signals = new ArrayList (); @ElementCollection private

Performance issue in a query due to compareTo calls

) @ElementCollection private Map values = new HashMap (); @OneToOne (fetch = FetchType. LAZY , cascade

objectdb.java.util.ArrayList and performance

the problem. A lazy loaded relationship was not fetched, which was accessed when iterating over the list. ph.schoerkhuber Philipp Schörkhuber

How to move @Embedable collection to a dedicated entity class?

parent for read only purposes (maybe using dto)? When I load them by parent.getChildren() ( lazy

Dont want to use Proxy Class

objectdb.java.util.ArrayList cannot be disabled, as it is an essential feature that enables lazy partial

query hint

={"linkedObjects.pointingTo.nodePath"}) })   the collection is defined as @OneToMany(fetch=FetchType. LAZY

Remove of an entry from a @OneToMany collection is not possible if the enhancer is disabled

{   @OneToMany(fetch = FetchType. LAZY , cascade = CascadeType.ALL, orphanRemoval = true)  

Fetch a whole entity graph eager

a transaction without lazy loading? Best regards btc_es BTC EmbeddedSystems @NamedEntityGraph is currently not

ObjectDB 2.7.3

Fixed a bug in query execution optimization ( issue #2170 ). Fixed cascading delete through unloaded ( lazy ) relationships. Fixed a NullPointerException when using "objectdb.temp.page-file" ( issue #2163 ) Added logging and suspend exception for  issue #2153 . Fixed a bug in using SIZE with

ClassCastException in Tuple.get

lazily, that's why stacktrace looks the way it does. Lazy evaluation of Guava methods