ObjectDB Database Search

1-50 of 200 results

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.PersistenceContext.properties

Jakarta Persistence (JPA) Method in jakarta.persistence.PersistenceContext PersistenceProperty[] properties (Optional) Properties for the container or persistence provider. Vendor specific properties may be included in this set of properties . Properties that are not recognized by a vendor

jakarta.persistence.PersistenceConfiguration.property(String,Object)

Jakarta Persistence (JPA) Method in jakarta.persistence.PersistenceConfiguration PersistenceConfiguration property (    String name ,    Object value ) Set a property of this persistence unit. Parameters: name - the property name value - the property value Returns: this configuration. Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.PersistenceConfiguration.properties()

Jakarta Persistence (JPA) Method in jakarta.persistence.PersistenceConfiguration Map properties () Standard and vendor-specific property settings. Returns: the configured properties . Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.AccessType.PROPERTY

Jakarta Persistence (JPA) Enum Constant in jakarta.persistence.AccessType PROPERTY Property -based access is used, that is, state is accessed via getter and setter methods. Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.PersistenceConfiguration.properties

Jakarta Persistence (JPA) Field in jakarta.persistence.PersistenceConfiguration properties Since: Jakarta Persistence (JPA) 1.0

Locking in JPA

; property :             For an EntityManagerFactory - using the  createEntityManagerFacotory method:   Map properties = new HashMap();   properties .put("javax.persistence.lock.timeout", 2000);   EntityManagerFactory emf =  

Externalising persistence.xml properties in Glassfish?

JPA itself and no formal standard for externalising properties (hence why they appear to be relying ... either with Glassfish/JBoss and having environment specific datastore properties being build independent ... holder Source. ${Source} Then in your server config you define every property as an argument

Database Connection using JPA

of the createEntityManagerFactory method takes a map of persistence unit properties as a second parameter: Map properties = new HashMap ();    properties .put("javax.persistence.jdbc.user", "admin");    properties .put("javax.persistence.jdbc.password", "admin");    EntityManagerFactory emf

JPA Metamodel API

details on managed classes and persistent fields and properties , similarly to the ability ... (); The ManagedType  interface adds methods for exploring managed fields and properties (which are referred ... an ID class when using multiple ID fields or properties . Finally, the EntityType interface adds

JPA Entity Fields

is enhanced (explained in chapter 5 ) or a version field is explicitly defined. Property Access ... properties using get and set methods is also supported. To use property access mode, every non-transient field must have get and set methods based on the Java bean property convention. Property access

Shared (L2) Entity Cache

can also be enabled or disabled using a persistence unit property :         ... ;   ...    The  javax.persistence.sharedCache.mode property can be set ... MyCacheableEntityClass {     ... } Cacheable is an inherited property - every entity

Setting and Tuning of JPA Queries

): For the entire persistence unit - using a persistence.xml   property :      ... ; createEntityManagerFacotory method:   Map properties = new HashMap();   properties .put("javax.persistence ... ;Persistence. createEntityManagerFactory ("pu", properties ); For an EntityManager  - using

Eclipse Public License - v 1.0

property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As ... responsibility to secure any other intellectual property rights needed, if any. For example

GROUP BY and HAVING clauses

properties of generated groups instead of individual objects and fields. The position of a GROUP BY ... individuals. Therefore, the SELECT clause can only use properties of the groups, which include: The properties that are used for grouping (each group has a unique value combination). Aggregate calculations

Chapter 6 - Configuration

explicitly by setting the "objectdb.home" system property : System.setProperty("objectdb.home", "/odb"); // new $objectdb As with any other system property it can also be set as an argument to the JVM ... the "objectdb.conf" system property : System.setProperty("objectdb.conf", "/my/objectdb.conf

JPA Persistence Unit

specify names of managed persistable classes (see below). The property elements specify general properties . JPA 2 defines standard properties for specifying database url, username and password, as

jakarta.persistence.EntityManager

to its persistent fields and properties are automatically detected, as long as it is associated with an active ... properties ) Find by primary key, using the specified properties . Search for an entity of the specified ... , it is returned from there. If a vendor-specific property or hint is not recognized, it is silently ignored

JPA Class Enhancer

Configurations… Arguments VM arguments In NetBeans JVM arguments can be set at the project properties :    Right clicking the project Properties Run VM Options Automatic Java Agent Enhancer Unless

JPA Metamodel API

The JPA Metamodel API, which is introduced in JPA 2.0, enables examining the classes, fields and properties of the persistent object model, similarly to the Java reflection API. The main interface of the JPA Metamodel API is: Types (mainly classes) and attributes (persistent field and properties

Paths and Types in JPQL and Criteria API

class must contain a persistent field (or property ) with a matching name. The path expression ... the parent path through a persistent field or property ), can be constructed by the get method: // FROM

ObjectDB Object Database Features

types, fields and properties . Object Model & Data Types ObjectDB supports persisting complex Java ... types : HashMap, Hashtable, WeakHashMap, IdentityHashMap, LinkedHashMap, TreeMap and Properties

jakarta.persistence.PersistenceConfiguration

. Since: Jakarta Persistence (JPA) 1.0 PersistenceConfiguration properties ( Map properties ) Set multiple properties of this persistence unit. Parameters: properties - the properties Returns: this configuration. Since: Jakarta Persistence (JPA) 1.0 Map properties () Standard and vendor-specific property

jakarta.persistence.Persistence

createEntityManagerFactory ( String persistenceUnitName , Map properties ) Create and return an EntityManagerFactory for the named persistence unit, using the given properties . Parameters: persistenceUnitName - the name of the persistence unit properties - additional properties to use when creating the factory

JPA Persistable Types

, Hashtable , WeakHashMap , IdentityHashMap , LinkedHashMap , TreeMap and Properties . Arrays (including multi

Schema Update

The element specifies renaming a persistent field (or a property ). Both attributes, name  (the old name

Logical Operators in JPQL and Criteria API

, a boolean path (a field or a property ) is represented by Path : Path isInUN = country

JPA Metamodel API Attributes

The following interfaces and enum types represent attributes (persistent fields and properties ) in the JPA Metamodel API: See the Metamodel Attribute Interface Hierarchy section for more details and examples.

Privacy Policy

Protect and defend the rights or property of the Company Prevent or investigate possible wrongdoing in

JPA Annotations for Access Modes

Persistence fields can either be accessed by JPA directly (as fields) or indirectly (as properties and get/set methods). JPA 2 provides an annotation and an enum for setting the access mode: More details are provided in chapter 2 of the ObjectDB manual.

ObjectDB Website - Terms and Conditions of Use

of intellectual property or other violation of rights. Further, ObjectDB Software does not warrant or make any

jakarta.persistence.Entity

. An entity class holds state, represented as persistent fields and properties : a field or property of basic type maps to a single column in one of the tables mapped by the entity, a field of property ... class must have at least one field or property annotated Id or EmbeddedId holding the primary key

jakarta.persistence.IdClass

: Annotation Target: Type Specifies a composite primary key type whose fields or properties map to the identifier fields or properties of the annotated entity class. The specified primary key type ... properties with matching names and types. The mapping of fields or properties of the entity to fields or

jakarta.persistence.TypedQuery

: flush mode. Since: Jakarta Persistence (JPA) 2.0 Map getHints () Get the properties and hints ... properties and hints. Since: Jakarta Persistence (JPA) 2.0 LockModeType getLockMode () Get the current ... TypedQuery setHint ( String hintName , Object value ) Set a query property or hint. The hints elements

jakarta.persistence.Basic

: Annotation Target: Method, Field The simplest type of mapping of a persistent field or property to a single database column. The Basic annotation may be applied to a property or instance variable whose type ... annotation is optional for persistent fields and properties of these types. If the Basic annotation

jakarta.persistence.Query

() Get the properties and hints and associated values that are in effect for the query instance. Returns: query properties and hints. Since: Jakarta Persistence (JPA) 2.0 LockModeType getLockMode ... property or hint. The hints elements may be used to specify query properties and hints. Properties

jakarta.persistence.StoredProcedureQuery

Query Returns: flush mode. Since: Jakarta Persistence (JPA) 2.0 Map getHints () Get the properties ... Returns: query properties and hints. Since: Jakarta Persistence (JPA) 2.0 LockModeType getLockMode ... Persistence (JPA) 1.0 StoredProcedureQuery setHint ( String hintName , Object value ) Set a query property

jakarta.persistence.OrderBy

[, orderby_item]* orderby_item ::= [ property _or_field_name] [ASC | DESC] If ASC or DESC is not specified, ASC ... , ordering by the primary key of the associated entity is assumed. The property or field name must correspond to that of a persistent property or field of the associated class or embedded class

jakarta.persistence.Convert

: Annotation Target: Method, Field, Type Specifies how the values of a field or property are converted ... defined autoApply=true , or overriding the use of a converter specified by a field or property ... of each identifier used with the dot notation is the name of the respective embedded field or property

jakarta.persistence.EntityManagerFactory

specifying property settings. This method returns a new EntityManager instance each time it is invoked. The EntityManager.isOpen method will return true on the returned instance. Parameters: map - properties ... of properties . This method returns a new EntityManager instance each time it is invoked

jakarta.persistence.AttributeOverride

(whether explicit or default) property or field or Id property or field. May be applied to an entity that extends a mapped superclass or to an embedded field or property to override a basic mapping or id mapping ... of the respective embedded field or property . If AttributeOverride is not specified, the column is mapped

jakarta.persistence.PersistenceProperty

Interfaces: Annotation Describes a single container or persistence provider property . Used in PersistenceContext . Vendor specific properties may be included in the set of properties , and are passed to the persistence provider by the container when the entity manager is created. Properties that are not

com.objectdb.o._PersistenceException: Failed to locate set method for field property using reflection

I am developing a J2SE  version "1.8.0_241" application and using property based accessors throughout. @Entity @Access(AccessType. PROPERTY ) public abstract class PlatformTicker implements ... ._PersistenceException: Failed to locate set method for field property domain.PlatformTicker.platformConnector using

ObjectDB-2.6.9: Failed to commit transaction: Failed to set numeric value of field property Element.id using reflection

to set numeric value of field property com.greensoft.objectdb.test.entity.Element.id using reflection ... value of field property com.greensoft.objectdb.test.entity.Element.id using reflection (error 613 ... : com.objectdb.o.UserException: Failed to set numeric value of field property com.greensoft.objectdb

jakarta.persistence.PersistenceContext

) 2.1 PersistenceProperty[] properties (Optional) Properties for the container or persistence provider. Vendor specific properties may be included in this set of properties . Properties that are not

jakarta.persistence.ManyToOne

the relationship field or property of the entity that is the owner of the relationship. A ManyToOne ... to specify the relationship field or property of the embeddable field or property on the owning ... with the dot notation is the name of the respective embedded field or property . Example 1: @ManyToOne(optional

jakarta.persistence.Embeddable

of multiple persistent fields or properties , across several entities, and so distinct instances ... in the table or tables mapped by the owning entity. The persistent fields and properties ... its owning entity to another entity. However, an embeddable class may not have a field or property

Step 7: Run the Spring Web App

F6 ): You can select the server in the Run category of the project properties window (right click the project node and select Properties to open it). Alternatively you can run the web application using ... and select Properties . In the Platform tab in VM Options enter:- -javaagent:C:\objectdb\bin

Step 6: Design a BIRT Report Table

the properties table to complete the table design (e.g. change the background color). You may click Preview

Step 1: Create a Java Project

the objectdb.jar file, using: Right Clicking on the Project Properties Java Build Path Libraries Add External