ObjectDB Database Search

1-50 of 200 results

jakarta.persistence.Embedded

Jakarta Persistence (JPA) Annotation Type jakarta.persistence. Embedded Implemented Interfaces: Annotation Target: Method, Field Declares a persistent field or property of an entity whose value ... may be used to override mappings declared or defaulted by the embeddable class. Example: @ Embedded

jakarta.persistence.metamodel.Attribute.PersistentAttributeType.EMBEDDED

Jakarta Persistence (JPA) Enum Constant in jakarta.persistence.metamodel.Attribute.PersistentAttributeType EMBEDDED Embeddable class attribute Since: Jakarta Persistence (JPA) 1.0

Embedded Object inside another embedded object - is that possible?

I have an entity with an embedded object - it works fine. Now I am trying to add an embedded object inside the first level embedded object - but it does not seem to store it and does not throw ... off that - finally found the solution - the 2nd level embedded class only had final fields

Embedding Managed Entities in Embedded Objects = bad idea

Discovered that you can't embed entities in embeddable objects if the entity is managed. Haven't tried embedding un-managed entities in embeddable objects, though I imagine that's not a great idea. The the error message isn't all that obvious (attempting to persist object which already has an id

Embedded in JDO metadata not working in objectDB 2.x ?

1 (with an OID for every instance) and all other classes were embedded (so without extent ... of RackGroupList embedded inside the instance of ProjectPart and the elements inside the RackGroupList are embedded too.   I did not change the metadata when I was moving from ObjectDB 1 to 2, I

collection of embedded objects

1. In general, are there any restrictions of the use of @ Embedded objects in collections, compared to @Entity ? 2. If you have a large nested collection of @ Embedded objects, and you remove ... through collections of @ Embedded objects more expensive (time) than searching through collections of @Entity ? Thanks

Embedded Database Replication

As we all know, embedded databases out perform server databases on every occasion. The problem with embedded databases is that theyre difficult to scale. If I were to create an entire enterprise web application within a single jar file using embedded tomcat and embedded objectdb I would run into

Changing existing objects from Entity to Embedded

classes should be embedded -only as they are stored only in a HashMap of another Entity. So as first ... btw ? So I left these classes NOT embedded in JDO, introduced copies of these classes in another package which were defined as embedded -only, made a migration utility which read the original objects

Embedable & Reference?

Hi! I've got a situation I do not understand. Assume code like this: @ Embedable public class ... embedded objects after retrieving from the db? Does this also mean that referencing an already embedded ... Entity class instead of my Embedded class? thanks! Alex quasado Alexander Adam This is the normal

Single Server License and Embedded Mode

We have an application that runs on a single server in embedded mode to write server million records.  Is it possible to use the single server license for embedded mode use?  I've looked ... , if it is possible.  I would prefer to stick with embedded mode for the speed. Since we only have a single

Using explorer with a live embedded db

I want to use ObjectDB explorer with a running embedded db. This issue:  http://www.objectdb ... an explorer on the same machine, trying to connect in both embedded and client-server mode. I could connect when I stopped my program that embedded the db. Is     still supposed to work

Embedded Entity in EmbeddedId not persisted. Error 631 at select.

.persistence.Embeddable; import javax.persistence. Embedded ; import javax.persistence.EmbeddedId; import ... 1: Works not: if field AId.b is not @ Embedded annotated.  *  *         case 2: Works: if field AId.b is @ Embedded annotated.  *   *      

Storing JPA Entities

of other persistable types can be stored in the database only as embedded objects in containing ... the EntityManager , or by commit . Referenced embedded objects The following code stores an Employee instance ... of persistable types other than entity classes are automatically stored as embedded objects in

Database Server

/IP communication between the client and the server, it is usually slower than embedded mode. In embedded mode, ObjectDB is integrated as a library and runs within the application's process, which is more efficient. As a result, you should use embedded mode when possible. For example, if an ObjectDB

JPA Persistable Types

can be stored directly in the database. Other persistable types can be embedded in entity classes as ... can be stored in the database only as embedded objects, that is, as part of a containing entity. A class ... classes are always embedded in other entities and do not require separate space allocation or separate

JPA Attributes Annotations

(Lazy/Eager) and nullability. Specifies a persistent field or property as an embedded attribute. The embedded state is stored in the same table as the owning entity. Specifies a collection field or property as an attribute containing a collection of embedded objects. This is used for "one-to-many

JPA Connections and Transactions

rather than a persistence unit name. To use ObjectDB embedded directly in your application ( embedded mode ... client-server mode) or a connection to a local database file (in embedded mode). The functionality

JPA Entity Fields

are explained in Chapter 3 . You can mark a persistent field of an embeddable type with the @ Embedded ... class Person { @ Embedded Address address; } Inverse fields Inverse (or mappedBy ) fields contain

ObjectDB License Agreement [ver. 2.0.4]

that guarantees that any user of the Product and the embedded Software will be committed to the terms ... and provisions to the entire Product, including the embedded Software. 5. The Software is provided "AS

JPA Metamodel Attributes

to the persistence provider. An enumeration defining the categorization of the attribute: BASIC , EMBEDDED , MANY ... , wrappers, Strings), embedded objects, and associations (reference fields and properties

Query Parameters in JPA

is constructed for each execution. Second, embedding strings in queries is unsafe and can expose ... and then embedded in the query string as-is. A malicious user could provide JPQL expressions instead

ObjectDB Object Database Features

Client-Server mode (TCP/IP). Secure Client-Server mode ( SSL over TCP/IP ). In process embedded database ... and values are indexable. Nested paths inside embedded objects are indexable. Indices are also used for fast

ObjectDB Overview

mode and Embedded mode. Single JAR with no external dependencies. Database is stored as a single file ... . Can easily be embedded in applications of any type and size. Tested with Tomcat, Jetty, GlassFish

Database Explorer

a database connection To open a local database file in embedded mode, use the File Open Embedded ... command

Database Management Settings

The configuration element specifies back-end (database engine) settings for the server and for embedded mode. The default configuration file contains the following element: The element The element specifies the database file and page size settings: The initial attribute specifies the initial size

SELECT clause (JPQL / Criteria API)

with the containing entities. Therefore, embedded objects that are retrieved directly by a result path expression

Database Replication and Clustering

on a server can function as a master database in a cluster, but databases in embedded mode

Index Definition

embeddable classes, because the fields of an embedded object are stored as part of the containing entity

Is ObjectDB scalable? What are its limitations?

ObjectDB is highly scalable and can manage efficiently databases in a wide range of sizes, from a few Kilobytes to hundreds of Gigabytes and even Terabytes. ObjectDB can be used in small embedded single user applications as well as in heavy loaded multi threaded multi user applications. ObjectDB

JPA Named Queries

A named query is a statically defined query with a predefined, unchangeable query string. Using named queries instead of dynamic queries can improve code organization by separating JPQL query strings from Java code. This practice also enforces the use of query parameters instead of embedding

JPA Criteria Queries

: Represents a query embedded within another query (for example, inside a WHERE clause). Unlike a top-level

Deleting JPA Entities

is committed. Any embedded objects that the entity contains are also deleted. If the transaction is rolled

Entity Management Settings

The configuration element specifies client-side and embedded -mode settings . The default configuration file contains the following element: The element The element specifies enhancement-related settings: The agent attribute (with a value of "true" or "false" ) specifies whether to load

BIRT/ODA ObjectDB Driver

connection URL. This can be an embedded URL (for example, c:\points.odb ) or a client-server URL

Posting Sample Code

method (preferred over JUnit). Use embedded mode to connect to the ObjectDB database directly

General Settings and Logging

(if greater than 0 ) applies to both the server and the client. This setting has no effect in embedded

JPA Primary Key

the Retrieving Entities section. Embedded primary key An alternative way to represent a composite primary key

jakarta.persistence.Convert

of an embedded type or inherited mapped superclass. It is not necessary to use the Basic annotation (or ... must not be specified. Alternatively, the Convert annotation may be applied to: an embedded attribute ... of an inherited basic or embedded attribute. In these cases, the attributeName must be specified

jakarta.persistence.AttributeOverride

a mapped superclass or to an embedded field or property to override a basic mapping or id mapping ... of embedding , a dot ( . ) notation form must be used in the name element to indicate an attribute within an embedded attribute. The value of each identifier used with the dot notation is the name

jakarta.persistence.AssociationOverride

embedded within another embeddable class), AssociationOverride is applied to the field or property ... within the embeddable class. To override mappings at multiple levels of embedding , a dot ( . ) notation syntax must be used in the name element to indicate an attribute within an embedded attribute

jakarta.persistence.OrderBy

must correspond to that of a persistent property or field of the associated class or embedded class ... operators are supported. The dot ( . ) notation is used to refer to an attribute within an embedded ... embedded field or property. The OrderBy annotation may be applied to an element collection. When OrderBy

JPA Web App Tutorial - Maven Project

.xml file) and port 8080 has to be available for the Jetty embedded server. No need to download ... embedded server automatically. When the Jetty server is ready - open your browser at http://localhost:8080

Step 7: Run the Spring Web App

) and follow the instructions. Alternatively you can run the web application using the embedded ... without specifying a Java agent. Since we are using ObjectDB in embedded mode - the database file

Spring MVC JPA Tutorial - Maven Project

), and port 8080 has to be available for the Jetty embedded server. It is not necessary to download ... embedded server automatically. When the Jetty server is ready - open your browser at http

Step 7: Run the Spring Web App

the embedded Maven Jetty plugin: Right click the project node and select Custom Goals... Enter  ... in embedded mode - the database file is created under the Tomcat directory. You can stop the Tomcat

Step 6: Run the Java EE 6 Application

You can run the application now by right clicking the GuestServlet node (in the [Project Explorer] window) and selecting Run As Run on Server Finish : Since we are using ObjectDB in embedded mode - the database file is created under the GlassFish directory (e.g. at domains\domain1\eclipseApps

Step 3: Create an ObjectDB Data Source

Start tutorial ). Specify an ObjectDB connection url - either embedded (e.g. c:\points.odb ) or client

Step 6: Run the Web Application

You can run the application now by right clicking the GuestServlet node (in the [Project Explorer] window) and selecting Run As Run on Server Finish : Since we are using ObjectDB in embedded mode - the database file is created under the Tomcat directory. You can stop the Tomcat server and open

Step 6: Run the Java EE 6 Application

You can run the application now by right clicking the  GuestServlet node (in the [Projects] window), selecting  Run File , and then clicking  OK (no need to change the servlet execution URI). Since we are using ObjectDB in embedded mode - the database file is created

Step 6: Run the Web Application

You can run the application now by right clicking the GuestServlet node (in the [Projects] window), selecting Run File , and then clicking  OK (no need to change the servlet execution URI). Since we are using ObjectDB in embedded mode - the database file is created under the Tomcat directory