ObjectDB Database Search

51-100 of 200 results

Maven and multiple JARs

Maven and multiple JARs

InternalError on multiple AND and JOIN Query

InternalError on multiple AND and JOIN Query

Using multiple databases

Using multiple databases

Query with FETCH JOIN returns multiple results instead of one.

Query with FETCH JOIN returns multiple results instead of one.

Multiple joins did not return expected result

Multiple joins did not return expected result

Issue with orphanRemoval and multiple EntityManagers

Issue with orphanRemoval and multiple EntityManagers

Multiple MEMBER OF query

Multiple MEMBER OF query

jakarta.persistence.SecondaryTable

one or more secondary tables indicates that the data for the entity class is stored across multiple ... { ... } Example 2: Single secondary table with multiple primary key columns. @Entity @Table(name

jakarta.persistence.NamedAttributeNode.keySubgraph

attribute also being specified. If the target type has inheritance, multiple subgraphs can be specified ... specified by the name element of the corresponding NamedSubgraph element. If multiple key subgraphs

jakarta.persistence.NamedAttributeNode.subgraph

to refer to that NamedSubgraph definition. If the target type has inheritance, multiple subgraphs ... . If multiple subgraphs are specified due to inheritance, they are referenced by this name. Default: "" Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.InheritanceType

to inherited fields or properties, and so the state of an entity instance might be stored across multiple

jakarta.persistence.ManyToMany

Jakarta Persistence (JPA) Annotation Type jakarta.persistence.ManyToMany Implemented Interfaces: Annotation Target: Method, Field Specifies a many-valued association with many-to-many multiplicity , mapping to an intermediate table called the join table . Every many-to-many association

jakarta.persistence.ManyToOne

Jakarta Persistence (JPA) Annotation Type jakarta.persistence.ManyToOne Implemented Interfaces: Annotation Target: Method, Field Specifies a single-valued association to another entity class that has many-to-one multiplicity . It is not usually necessary to specify the target entity explicitly

jakarta.persistence.NamedNativeQueries

Jakarta Persistence (JPA) Annotation Type jakarta.persistence.NamedNativeQueries Implemented Interfaces: Annotation Target: Type Declares multiple native SQL named queries. Query names are scoped to the persistence unit. The NamedNativeQueries annotation can be applied to an entity or mapped

jakarta.persistence.Converts

Jakarta Persistence (JPA) Annotation Type jakarta.persistence.Converts Implemented Interfaces: Annotation Target: Method, Field, Type Used to group Convert annotations. Multiple converters must not be applied to the same basic attribute. See Also: Convert Since: Jakarta Persistence (JPA) 2.1

jakarta.persistence.Embeddable

of multiple persistent fields or properties, across several entities, and so distinct instances

jakarta.persistence.Entity

of embeddable type has nested mappings to multiple columns in one of the tables mapped by the entity

jakarta.persistence.EntityManager

serially to begin and commit multiple transactions. Returns: EntityTransaction instance. Throws

jakarta.persistence.AttributeOverride

order to specify it as part of the map key or map value. To override mappings at multiple levels

jakarta.persistence.AttributeOverrides

Jakarta Persistence (JPA) Annotation Type jakarta.persistence.AttributeOverrides Implemented Interfaces: Annotation Target: Type, Method, Field Used to override mappings of multiple properties or fields. Example: @Embedded @AttributeOverrides({ @AttributeOverride(name = "startDate", column

jakarta.persistence.AssociationOverride

within the embeddable class. To override mappings at multiple levels of embedding, a dot ( . ) notation

jakarta.persistence.AttributeConverter

when multiple converters would otherwise apply. Note that the target type X and the converted basic type Y

jakarta.persistence.AssociationOverrides

Jakarta Persistence (JPA) Annotation Type jakarta.persistence.AssociationOverrides Implemented Interfaces: Annotation Target: Type, Method, Field Used to override mappings of multiple relationship properties or fields. Example: @MappedSuperclass public class Employee { @Id protected Integer id

jakarta.persistence.SchemaValidationException

multiple problems might be reported, each as a separate exception instance. Since: Jakarta

jakarta.persistence.StoredProcedureQuery

back only via INOUT and OUT parameters as well as the most general case ( multiple result sets and/or update

jakarta.persistence.NamedStoredProcedureQuery

. If there are multiple result sets, it is assumed that they are mapped using the same mechanism —

jakarta.persistence.NamedQueries

Jakarta Persistence (JPA) Annotation Type jakarta.persistence.NamedQueries Implemented Interfaces: Annotation Target: Type Declares multiple named Jakarta Persistence query language queries. Query names are scoped to the persistence unit. The NamedQueries annotation can be applied to an entity or

jakarta.persistence.NamedStoredProcedureQueries

Jakarta Persistence (JPA) Annotation Type jakarta.persistence.NamedStoredProcedureQueries Implemented Interfaces: Annotation Target: Type Specifies multiple named stored procedure queries. Query names are scoped to the persistence unit. The NamedStoredProcedureQueries annotation can be applied

jakarta.persistence.OneToOne

Jakarta Persistence (JPA) Annotation Type jakarta.persistence.OneToOne Implemented Interfaces: Annotation Target: Method, Field Specifies a single-valued association to another entity class that has one-to-one multiplicity . It is not usually necessary to specify the associated target entity

jakarta.persistence.OneToMany

Jakarta Persistence (JPA) Annotation Type jakarta.persistence.OneToMany Implemented Interfaces: Annotation Target: Method, Field Specifies a many-valued association with one-to-many multiplicity . If the collection is defined using generics to specify the element type, the associated target entity

jakarta.persistence.PersistenceConfiguration

. Since: Jakarta Persistence (JPA) 1.0 PersistenceConfiguration properties ( Map properties ) Set multiple

EM close causes an exception

are still running? Another option, do you use multiple databases in that test? If you do, maybe ... to ObjectDB on each JVM? Maybe this issue is related to multiple threads, possibly using multiple databases, but on the same JVM rather than to multiple JVMs? support Support I checked it in

Embedded & Activation & Scalation

Hi there, Our app is highly scalable and can be distributed among multiple processes on multiple ... only limitation. Is there a way to spawn multiple server instances "embedded" into our app so we can avoid the single-process restriction though still have multiple processes to avoid a SPOF? Yes, the OEM

Multi-tenant capability with hierarchies

but only with an generel answer. What we need are multiple tenants (would be best if every tenant has its own file/db ... this with ObjectDB? ObjectDB doesn't support queries on multiple databases, so it is possible ... to open multiple databases, but currently we don't have an example that does that. If you use

jakarta.persistence.PersistenceConfiguration.properties(Map)

Jakarta Persistence (JPA) Method in jakarta.persistence.PersistenceConfiguration PersistenceConfiguration properties (    Map properties ) Set multiple properties of this persistence unit. Parameters: properties - the properties Returns: this configuration. Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.Graph.addSubgraph(String,Class)

Jakarta Persistence (JPA) Method in jakarta.persistence.Graph Subgraph addSubgraph (    String attributeName ,    Class type ) Add a node to the graph that corresponds to a managed type with inheritance. This allows for multiple subclass subgraphs to be defined for this node

jakarta.persistence.Graph.addTreatedSubgraph(Attribute,Class)

Jakarta Persistence (JPA) Method in jakarta.persistence.Graph Subgraph addTreatedSubgraph (    Attribute attribute ,    Class type ) Add a node to the graph that corresponds to a managed type with inheritance. This allows for multiple subclass subgraphs to be defined

jakarta.persistence.Graph.addSubgraph(Attribute,Class)

Jakarta Persistence (JPA) Method in jakarta.persistence.Graph Subgraph addSubgraph (    Attribute attribute ,    Class type ) Add a node to the graph that corresponds to a managed type with inheritance. This allows for multiple subclass subgraphs to be defined for this node

jakarta.persistence.EntityManager.getTransaction()

Jakarta Persistence (JPA) Method in jakarta.persistence.EntityManager EntityTransaction getTransaction() Return the resource-level EntityTransaction object. The EntityTransaction instance may be used serially to begin and commit multiple transactions. Returns: EntityTransaction instance. Throws

jakarta.persistence.InheritanceType.JOINED

instance might be stored across multiple table rows. A join is used to retrieve the state of such entities. Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.SchemaValidationException.getFailures()

the remaining database objects, in which case multiple problems might be reported, each as a separate exception instance. Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.Convert.converter

Jakarta Persistence (JPA) Method in jakarta.persistence.Convert Class converter Specifies the converter to be applied. This element must be explicitly specified if multiple converters would otherwise apply. Default: jakarta.persistence.AttributeConverter/class Since: Jakarta Persistence (JPA) 1.0

Mismatch client-server protocol prefix

:757) I checked multiple times if the versions match. They do. DB server version 2.6.2. Client ... ;   } This code worked for a couple of years now and is used in multiple projects. mosi0815 ... to every transaction stops to work correctly. I also found multiple examples on the Internet where they don't

virtual servers and one file

that's a crutch. Could there be a way in the future to split the database across multiple files? Thank ... machine either way. Could there be a way in the future to split the database across multiple files ... how breaking a database into multiple files, for example one file per entity class, may help

PersistenceManager.getObjectsById(Collection,boolean) throwing JDOException

containing a single oid object (the method is written to support multiple objects ... should return an empty collection. It should work with single or multiple IDs and with any collection ... multiple entities (error 636) at com.objectdb.jdo.PMImpl.getObjectsById(PMImpl.java:512) at com.objectdb

Database size is much larger than expected (x2)

! You can check it by repeating insertion of   a pic of multiples . I can not send the 7GB file ... objects have identity and support multiple references without duplication. All the other types ... loops and file reading operations" will cause the persistence of my class into multiple copies? TIA

after upgrade to 2.9.0 database destroys, urgent issue at our most important customer, production shutdown

with multiple parents), which are unlikely to be solved by the Doctor. Is it the a log for the database ... there should be only one process that accesses the database file. Accessing a database from multiple processes concurrently can cause exactly this issue of structural issues (orphan pages and page with multiple

Multi-tenant setup

Hi, does anybody have experience with multi tenant setup of objectDB. For example using multiple schema or multiple database. How to handle connections between app (Jboss Wildfly) and pass query ... use ObjectDB with multiple databases. It is very easy when accessing databases directly (by

Server vs embedded mode in multi-instance scenario

We are creating a web app that will have multiple different clients, each on their own EC2 ... given time (100k absolute maximum). We will probably have multiple instances per client for availability ... connections from multiple instances. But from what I can tell, there will be about a 50% performance drop from using Server mode to accommodate the

Use temporary files to enable very large transactions

you split the transaction to multiple smaller transactions? support Support     ... you split the transaction to multiple smaller transactions? Because it is a large transaction content ... can be larger than the database, since the same database page may be stored in the file multiple times