ObjectDB Database Search

101-150 of 200 results

Memory Leaks after COMMIT operation (checked on versions 2.6.5 & 2.6.6.b01)

Memory Leaks after COMMIT operation (checked on versions 2.6.5 & 2.6.6.b01)

ObjectDB 2.2.8

ObjectDB 2.2.8

ObjectDB 2.2.5

ObjectDB 2.2.5

ObjectDB 2.3.2

ObjectDB 2.3.2

ObjectDB 2.2.7

ObjectDB 2.2.7

ObjectDB 2.4.2

ObjectDB 2.4.2

ObjectDB 2.9.2_03

ObjectDB 2.9.2_03

ObjectDB 2.2.4

ObjectDB 2.2.4

ObjectDB 2.0.2

ObjectDB 2.0.2

ObjectDB 2.2.1

ObjectDB 2.2.1

ObjectDB 2.5.2

ObjectDB 2.5.2

ObjectDB 2.2.6

ObjectDB 2.2.6

ObjectDB 2.9.2_01

ObjectDB 2.9.2_01

ObjectDB 2.8.2

ObjectDB 2.8.2

ObjectDB 2.2.9

ObjectDB 2.2.9

ObjectDB 2.9.2_02

ObjectDB 2.9.2_02

jakarta.persistence.Graph

to EntityGraph and Subgraph . See Also: EntityGraph Subgraph Since: Jakarta Persistence (JPA) 3. 2 Public ... is not an attribute of this entity.. Since: Jakarta Persistence (JPA) 3. 2 AttributeNode ... Persistence (JPA) 3. 2 void addAttributeNodes ( String... attributeName ) Add one or more attribute

jakarta.persistence.EntityGraph

Persistence (JPA) 2 .1 Public Instance Methods AttributeNode addAttributeNode ( String attributeName ... .. Since: Jakarta Persistence (JPA) 3. 2 AttributeNode addAttributeNode ( Attribute attribute ) Get an existing ... : IllegalStateException - if the EntityGraph has been statically defined. Since: Jakarta Persistence (JPA) 3. 2 void

jakarta.persistence.criteria.PluralJoin

query construction. Since: Jakarta Persistence (JPA) 2 .0 Public Instance Methods Selection alias ... Persistence (JPA) 3. 2 Predicate equalTo ( Expression value ) Create a predicate to test ... to be tested against Returns: predicate testing for equality. Since: Jakarta Persistence (JPA) 3. 2

jakarta.persistence.criteria.MapJoin

collection that has been specified as a java.util.Map . Since: Jakarta Persistence (JPA) 2 .0 Public ... of the given basic type. Since: Jakarta Persistence (JPA) 3. 2 Expression entry () Create an expression ... to be tested against Returns: predicate testing for equality. Since: Jakarta Persistence (JPA) 3. 2

jakarta.persistence.criteria.SetJoin

that has been specified as a java.util.Set . Since: Jakarta Persistence (JPA) 2 .0 Public Instance Methods Selection ... . Since: Jakarta Persistence (JPA) 3. 2 Predicate equalTo ( Expression value ) Create a predicate to test ... to be tested against Returns: predicate testing for equality. Since: Jakarta Persistence (JPA) 3. 2

jakarta.persistence.criteria.CollectionJoin

that has been specified as a java.util.Collection . Since: Jakarta Persistence (JPA) 2 .0 Public ... of the given basic type. Since: Jakarta Persistence (JPA) 3. 2 Predicate equalTo ( Expression value ) Create ... . Since: Jakarta Persistence (JPA) 3. 2 Predicate equalTo ( Object value ) Create a predicate to test

jakarta.persistence.criteria.ListJoin

that has been specified as a java.util.List . Since: Jakarta Persistence (JPA) 2 .0 Public Instance Methods Selection ... . Since: Jakarta Persistence (JPA) 3. 2 Predicate equalTo ( Expression value ) Create a predicate to test ... - expression to be tested against Returns: predicate testing for equality. Since: Jakarta Persistence (JPA) 3. 2

jakarta.persistence.criteria.Join

Persistence (JPA) 2 .0 The FROM clause (JPQL / Criteria API) article explains how to use Join . Public ... of the given basic type. Since: Jakarta Persistence (JPA) 3. 2 Predicate equalTo ( Expression value ) Create ... . Since: Jakarta Persistence (JPA) 3. 2 Predicate equalTo ( Object value ) Create a predicate to test

jakarta.persistence.Subgraph

within an EntityGraph . See Also: EntityGraph AttributeNode NamedSubgraph Since: Jakarta Persistence (JPA) 2 .1 Public ... . IllegalArgumentException - if the attribute is not an attribute of this entity.. Since: Jakarta Persistence (JPA) 3. 2 ... has been statically defined. Since: Jakarta Persistence (JPA) 3. 2 void addAttributeNodes ( String

Database Management Settings

. The page attribute specifies the size of a page in a database file. The default value of 2 KB

JPA Persistable Types

are stored as ordinal numbers (0, 1, and 2 ), while values of the color3 field are stored as strings

Schema Update

Chapter 2 , ObjectDB handles other schema changes automatically. Note: Use extreme caution

Logical Operators in JPQL and Criteria API

Logical operators in JPQL and JPA criteria queries combine simple Boolean expressions to form complex expressions. Logical operators ObjectDB supports two sets of logical operators, as shown in the following table: Set 1: JPQL / SQL Set 2 : Java / JDO AND && OR || NOT ! JPQL uses SQL notation

JPA Metamodel Types

The Jakarta Persistence (JPA) Metamodel API defines a structured hierarchy of interfaces and enumerations to represent the persistent types within a domain model. Metamodel Types Hierarchy in Jakarta Persistence (JPA) 3. 2 Base type definitions The core abstractions of model types

JPA Extended API Reference Guide

Jakarta Persistence API (JPA) 3. 2 documentation, generated from the official JavaDoc and enriched with practical notes. It groups the API types into logical sections to help you locate core concepts, query facilities, metamodel details, configuration options, annotations, and exception information

JPA Named Queries

their named queries by using the JPA 2 Metamodel interface. For example: em. getMetamodel (). managedType

DELETE Queries in JPA/JPQL

As explained in Chapter 2 , you can delete entities from the database by following these steps: Retrieve the entities into an EntityManager . Remove these objects from the EntityManager within an active transaction, either explicitly by calling the remove method or implicitly through a cascading

JPA Core Types

and inheritance relationships. Jakarta Persistence (JPA) 3. 2 Core Types Bootstrapping and Configuration

Defining a JPA Entity Class

. The values of these fields are stored in the database when an entity is persisted. Chapter 2 provides

JPA Query API

Jakarta Persistence (JPA) represents queries with two interfaces: the Query interface, which was the only query interface in JPA 1, and the TypedQuery interface, which was introduced in JPA 2 . The TypedQuery interface extends the Query interface. Use the Query interface primarily when the query

Comparison in JPQL and Criteria API

Most JPQL queries use at least one comparison operator in their WHERE clause. Comparison operators ObjectDB supports two sets of comparison operators, as shown in the following table: Set 1: JPQL/SQL Set 2 : Java/JDO Less Than Less Than or Equal To = Equal To = == Not Equal To != The main

UPDATE SET Queries in JPA/JPQL

You can update existing entities, as explained in chapter 2 , by following these steps: Retrieve the entities into an EntityManager . Update the relevant entity fields within an active transaction. Apply the changes to the database by calling the commit method. JPQL UPDATE queries provide

JPA Persistence Unit

(PersistenceConfiguration) Starting with  JPA 3. 2 , it is no longer mandatory to use a  persistence.xml  

Managing JPA Entities

EntityManager . ObjectDB also manages a level 2 (L2) shared cache for the EntityManagerFactory

JPA Criteria FROM and JOIN

is structured as follows: Criteria Query From Components in Jakarta Persistence (JPA) 3. 2  

ObjectDB Overview

- managed only by standard Java APIs (JPA / JDO 2 ). Extremely fast - faster than any other JPA / JDO

JPA Primary Key

( long ). The primary key of the first entity is 1, the second is 2 , and so on. Primary key values

jakarta.persistence.PessimisticLockException

may be thrown as part of an API call, a flush or at commit time. The current transaction, if one is active, is marked for rollback. Since: Jakarta Persistence (JPA) 2 .0 Public Constructors

jakarta.persistence.LockTimeoutException

. The current transaction, if one is active, will be not be marked for rollback. Since: Jakarta Persistence (JPA) 2 .0 Public Constructors LockTimeoutException () Constructs a new LockTimeoutException

jakarta.persistence.QueryTimeoutException

the persistence provider when a query times out and only the statement is rolled back. The current transaction, if one is active, will be not be marked for rollback. Since: Jakarta Persistence (JPA) 2

Step 6: Set the Spring XML

.DispatcherServlet 2 spring *.html 30 index.jsp The settings above routes web requests with  .html suffix

Step 6: Set the Spring XML

: spring org.springframework.web.servlet.DispatcherServlet 2 spring *.html 30 index.jsp The settings

Step 6: Design a BIRT Report Table

In this final step we will add a simple table to the report: Open the [Insert Table] dialog box by dragging a Table from the [Palette] window and dropping it on the report design (.rptdesign) layout. Set the column number to 2 , number of details to 1 , select the data set (e.g. Points by X

ObjectDB 1.0 Manual

- About ObjectDB Describes ObjectDB's main features and editions. Chapter 2 - A Quick Tour Demonstrates