ObjectDB Database Search

51-100 of 200 results

500Mb ObjectDb database opening issue

+----------------------------------------------------------------------------------------------------+----------------+-------------+ |& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp

jakarta.persistence.criteria.Subquery.having(Expression)

Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.Subquery Subquery having ( & nbsp ;& nbsp ; Expression restriction ) Specify a restriction over the groups of the subquery. Replaces the previous having restriction(s), if any. This method only overrides the return type

jakarta.persistence.criteria.Subquery.having(Predicate...)

Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.Subquery Subquery having ( & nbsp ;& nbsp ; Predicate... restrictions ) Specify restrictions over the groups of the subquery according the conjunction of the specified restriction predicates. Replaces the previously added having

jakarta.persistence.criteria.Subquery.having(List)

Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.Subquery Subquery having ( & nbsp ;& nbsp ; List restrictions ) Specify restrictions over the groups of the query according the conjunction of the specified restriction predicates. Replaces the previously added having restriction(s

jakarta.persistence.criteria.CriteriaQuery.having(Predicate...)

Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.CriteriaQuery CriteriaQuery having ( & nbsp ;& nbsp ; Predicate... restrictions ) Specify restrictions over the groups of the query according the conjunction of the specified restriction predicates. Replaces the previously added having

jakarta.persistence.criteria.CriteriaQuery.having(List)

Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.CriteriaQuery CriteriaQuery having ( & nbsp ;& nbsp ; List restrictions ) Specify restrictions over the groups of the query according the conjunction of the specified restriction predicates. Replaces the previously added having

jakarta.persistence.criteria.CriteriaQuery.having(Expression)

Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.CriteriaQuery CriteriaQuery having ( & nbsp ;& nbsp ; Expression restriction ) Specify a restriction over the groups of the query. Replaces the previous having restriction(s), if any. This method only overrides the return type

jakarta.persistence.MapKeyJoinColumns

. The MapKeyJoinColumns annotation groups MapKeyJoinColumn annotations. When the MapKeyJoinColumns annotation ... of the grouped MapKeyJoinColumn annotations. See Also: MapKeyJoinColumn ForeignKey Since: Jakarta Persistence

ObjectDB - JPA Object Database for Java

& nbsp ; Boost your application database performance. Database performance is critical as ... Mapping (ORM) tools can reduce some manual work but cannot eliminate the& nbsp ;extra processing time ... when the object data& nbsp ;model is complex. See JPA benchmark results... & nbsp ; Reduce development time. Improve

jakarta.persistence.criteria.AbstractQuery.getGroupList()

Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.AbstractQuery List getGroupList() Return a list of the grouping expressions. Returns empty list if no grouping expressions have been specified. Modifications to the list do not affect the query. Returns: the list of grouping expressions. Since: Jakarta Persistence (JPA) 1.0

ObjectDB License

Free License ObjectDB can be downloaded and used at no cost (including commercially)& nbsp ; with& nbsp ;the restriction of a maximum of& nbsp ; 10 entity classes and one million entities per database ... License costs £500 & nbsp ;and includes all version 2.x updates. A server license covers one installation

JPA Criteria FROM and JOIN

is structured as follows: Criteria Query From Components& nbsp ;in Jakarta Persistence (JPA) 3.2& nbsp ... an entity type& nbsp ;variable, whose scope is all instances of the entity type. Defines an attribute& nbsp ;variable, whose scope is all values of a specific persistent attribute. The base interface

JPA Criteria Query Date/Time Extraction

Jakarta Persistence& nbsp ;criteria queries use the following interfaces and enums to extract ... a criteria query specify& nbsp ; the enum value that represents that component as the first argument of& nbsp ... & nbsp ;types, represented by the following enums. Defines the component types of& nbsp ;Date values

JPA Criteria Query Selection and Results

( CriteriaBuilder.array ), application defined result classes & nbsp ;( CriteriaBuilder.construct ), and tuples ... a single query result& nbsp ;(result set row) and provides methods for obtaining the& nbsp ;elements of& nbsp ;the result as an array of objects or as individual values by& nbsp ;index, alias string or

jakarta.persistence.JoinColumns

Jakarta Persistence (JPA) Annotation Type jakarta.persistence.JoinColumns Implemented Interfaces: Annotation Target: Method, Field Specifies the mapping for composite foreign keys. This annotation groups JoinColumn annotations for the same relationship. Each JoinColumn annotation must explicit

jakarta.persistence.NamedEntityGraphs

Jakarta Persistence (JPA) Annotation Type jakarta.persistence.NamedEntityGraphs Implemented Interfaces: Annotation Target: Type Used to group NamedEntityGraph annotations. See Also: NamedEntityGraph Since: Jakarta Persistence (JPA) 2.1 Annotation Elements NamedEntityGraph[] value Since: Jakarta

jakarta.persistence.ConstructorResult

" + "WHERE o.cid = c.id " + " GROUP BY c.id, c.name", "CustomerDetailsResult"); @SqlResultSetMapping( name

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.EntityManagerFactory

Jakarta Persistence (JPA) Interface jakarta.persistence.EntityManagerFactory Super Interfaces: AutoCloseable Interface used to interact with the persistence unit, and to create new instances of EntityManager . A persistence unit defines the set of all classes that are related or grouped by

jakarta.persistence.PrimaryKeyJoinColumns

Jakarta Persistence (JPA) Annotation Type jakarta.persistence.PrimaryKeyJoinColumns Implemented Interfaces: Annotation Target: Type, Method, Field Groups PrimaryKeyJoinColumn annotations. It is used to map composite foreign keys. Example: ValuedCustomer subclass @Entity @Table(name = "VCUST

jakarta.persistence.SequenceGenerators

Jakarta Persistence (JPA) Annotation Type jakarta.persistence.SequenceGenerators Implemented Interfaces: Annotation Target: Type, Method, Field, Package Used to group SequenceGenerator annotations. See Also: SequenceGenerator Since: Jakarta Persistence (JPA) 2.2 Annotation Elements

jakarta.persistence.TableGenerators

Jakarta Persistence (JPA) Annotation Type jakarta.persistence.TableGenerators Implemented Interfaces: Annotation Target: Type, Method, Field, Package Used to group TableGenerator annotations. See Also: TableGenerator Since: Jakarta Persistence (JPA) 2.2 Annotation Elements TableGenerator[] value

Step 3: Add a Main Class

= & nbsp ;Persistence.createEntityManagerFactory( & nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;"$objectdb/db/p2.odb"); EntityManager em = emf

Java EE 6 JPA Tutorial - IntelliJ Project

To open and run the& nbsp ; Java EE 6 Web Application tutorial& nbsp ;project in& nbsp ;IntelliJ IDEA: Download and extract the project zip file: Java EE& nbsp ;JPA Web App - Maven Project (7KB) Open the project in IntelliJ IDEA: Select& nbsp ; File Open Project... . Select the& nbsp ; guestbook-jee6

Step 3: Add a Main Class

yet): EntityManagerFactory emf = Persistence.createEntityManagerFactory( & nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;"$objectdb/db/p2.odb"); EntityManager em

Spring MVC JPA Tutorial - IntelliJ Project

To open and run the& nbsp ; Spring MVC JPA tutorial& nbsp ;project in Download and extract the project zip file: Spring MVC JPA - Maven Project (8KB) Open the project in IntelliJ IDEA: Select& nbsp ; File Open Project... . Select the& nbsp ; guestbook-spring directory and click& nbsp ; OK . Define

Step 6: Set the Spring XML

of the Spring dispatcher servlet to the& nbsp ; web.xml configuration file and to configure that servlet using another xml configuration file. Open the& nbsp ; web.xml file (under src/main/webapp/WEB-INF) in a text editor (by right clicking and selecting& nbsp ; Open With Text Editor or by double click

Java EE 6 JPA Tutorial - Eclipse Project

To open and run the Java EE 6 Web Application tutorial& nbsp ;project in Eclipse: Download and extract the project zip file: Java EE& nbsp ;JPA Web App - Maven Project (7KB) Open the Maven project in Eclipse: Select& nbsp ; File Import... Maven Existing Maven Projects and click& nbsp ; Next . Select

Spring MVC JPA Tutorial - Eclipse Project

To open and run the& nbsp ; Spring MVC JPA tutorial& nbsp ;project in Eclipse: Download and extract ... & nbsp ; File Import... Maven Existing Maven Projects and click& nbsp ; Next . Select the& nbsp ; guestbook-spring directory as Root Directory and press& nbsp ; ENTER . Select the project and click& nbsp ; Finish

Java EE 6 JPA Tutorial - NetBeans Project

To open and run the& nbsp ; Java EE 6 Web Application tutorial& nbsp ;project in& nbsp ;NetBeans: Download and extract the project zip file: Java EE& nbsp ;JPA Web App - Maven Project (7KB) Open the Maven project in NetBeans: Select& nbsp ; File Open Project... . Select the& nbsp ; guestbook-jee6 directory

Step 3: Define a Spring DAO Component

clicking the guest package node (in the [Package Explorer] window) and selecting& nbsp ; New Class . The package name should be& nbsp ; guest . Enter& nbsp ; GuestDao as the class name - use& nbsp ; exactly that case sensitive class name. Click& nbsp ; Finish to create the new DAO Spring component class. Now

Step 7: Run the Spring Web App

redirection to the& nbsp ; controller path: If Tomcat 6.0 is installed as a server in your Eclipse -& nbsp ;you can run the application now by right clicking the project& nbsp ;node (in the [Project Explorer] window), selecting& nbsp ; Run As Run on Server , selecting the Tomcat 6.0 server and clicking Finish

Step 3: Define an EJB Session Bean

); return query.getResultList(); } } The& nbsp ; GuestDao session bean (EJB) class defines two methods: persist - for storing a new& nbsp ; Guest entity in the database. getAllGuests - for retrieving all the existing& nbsp ; Guest objects from the database. EJB classes are only supported by Java EE

Spring MVC JPA Tutorial - Maven Project

The& nbsp ; Spring MVC JPA tutorial provides step by step instructions on how to build a simple Java/JPA Spring MVC database driven web application in& nbsp ; Eclipse or& nbsp ; NetBeans . Building a new application step by step is an effective& nbsp ;way to learn - but& nbsp ;if you prefer

Spring MVC JPA Tutorial - NetBeans Project

To open and run the& nbsp ; Spring MVC JPA tutorial& nbsp ;project in& nbsp ;NetBeans: Download ... : Select& nbsp ; File Open Project... . Select the& nbsp ; guestbook-spring directory and click& nbsp ; Open Project . Run the project: Select& nbsp ; Run Run Main Project... (or& nbsp ; F6 ). Choose or define

Eclipse/JPA Spring MVC Web Tutorial

This is the Eclipse version of the& nbsp ; Spring MVC and JPA tutorial. It& nbsp ;demonstrates& nbsp ;how& nbsp ;to& nbsp ;create and run a full Java& nbsp ;Spring MVC (Model View Controller) web application in ... that has signed the guestbook is represented by a& nbsp ; Guest JPA entity and all the& nbsp ; Guest entities

JPA Web App Tutorial - Maven Project

The& nbsp ; JPA Web Application tutorial provides step by step instructions on how to build a simple Java/JPA database driven web application (for Tomcat / Jetty) in& nbsp ; Eclipse or& nbsp ; NetBeans . Building a new application step by step is an effective& nbsp ;way to learn - but& nbsp ;if you prefer

Report Generation with BIRT and JPA

simple as possible - we will use the basic& nbsp ; points.odb ObjectDB database file from the Getting ... = x : & nbsp ;& nbsp ;& nbsp ;& nbsp ;(0, 0), (1, 1), (2, 2), ..., (999, 999) The BIRT report that we will create will be based on the following subset of these points: & nbsp ;& nbsp ;& nbsp ;& nbsp ;(11, 11), (12

Step 3: Define a Spring DAO Component

Java Class... . Enter& nbsp ; GuestDao as the class name - use& nbsp ; exactly that case sensitive class ... - for storing a new& nbsp ; Guest entity in the database. getAllGuests - for retrieving all the existing& nbsp ... the controller, as shown in the next step. Prepares an& nbsp ; EntityManager automatically and injects it into

JPA Web App Tutorial - Eclipse Project

To open and run the& nbsp ; JPA Web Application tutorial& nbsp ;project in Eclipse: Download ... & nbsp ; File Import... Maven Existing Maven Projects and click& nbsp ; Next . Select the& nbsp ; guestbook-web directory as Root Directory and press& nbsp ; ENTER . Select the project and click& nbsp ; Finish

Step 2: Entity Class and Persistence Unit

) and selecting& nbsp ; New Class . Enter& nbsp ; guest as the package name - use& nbsp ; exactly that case sensitive package name. Enter& nbsp ; Guest as the class name - use& nbsp ; exactly that case sensitive class name. Click& nbsp ; Finish to create the new class. A new class that should represent Guest

Java EE JPA Tutorial - Maven Project

The& nbsp ; Java EE Web Application tutorial provides step by step instructions on how to build a simple Java/JPA database driven web application (for GlassFish 3/ JBoss 6) in& nbsp ; Eclipse or& nbsp ; NetBeans . Building a new application step by step is an effective& nbsp ;way to learn - but& nbsp

NetBeans/JPA Spring MVC Web Tutorial

This is the NetBeans& nbsp ;version of the Spring MVC and JPA tutorial. It& nbsp ;demonstrates& nbsp ;how& nbsp ;to& nbsp ;create and run a full Java& nbsp ;Spring MVC (Model View Controller) web application in NetBeans - using JPA, ObjectDB, Tomcat& nbsp ;(or GlassFish)& nbsp ;and Maven. The demo web application

JPA Web App Tutorial - NetBeans Project

To open and run the& nbsp ; JPA Web Application tutorial& nbsp ;project in NetBeans: Download ... : Select& nbsp ; File Open Project... . Select the& nbsp ; guestbook-web directory and click& nbsp ; Open ... OK . If & nbsp ;a browser is not opened - open it at& nbsp ;http://localhost:8080/Guestbook/.

[ODB1] Chapter 2 - A Quick Tour

, but it is a good sample to start with because of its simplicity.& nbsp ; We then proceed with the JDO ... , step by step. Both sample programs are contained in ObjectDB's samples directory. 2.1& nbsp ;& nbsp ... .currentTransaction().commit(); 38 pm.close(); 39 } 40 } How it works & nbsp ; Lines 3-5 Three import

[ODB1] Chapter 6 - Persistent Objects

Persistence objects represent data in the database. 6.1& nbsp ;& nbsp ;Making Objects Persistent In ... (an embedded object can only be retrieved using a reference from its containing object). 6.2& nbsp ;& nbsp ;Object IDs and Names Identifying database objects by unique IDs and by names is useful in object

[ODB1] Chapter 7 - JDOQL Queries

a specified order. 7.1& nbsp ;& nbsp ;Introduction to JDOQL A basic JDOQL query has the following ... ) void setCandidates(Extent pcs) void setFilter(String filter) 7.2& nbsp ;& nbsp ;Query Filter Syntax ... demonstrated by the following table: & nbsp ; Literal Type Samples of valid literals in JDOQL int 2003, -127

[ODB1] Chapter 8 - ObjectDB Server

the connection URL string. 8.1& nbsp ;& nbsp ;Running an ObjectDB Server The ObjectDB server is a pure Java ... to manage the server (stop, restart and start), and to exit the application. 8.2& nbsp ;& nbsp ;Single User ... to do the same operation in subdirectories of that directory. 8.3& nbsp ;& nbsp ;Multi User Server

[ODB1] Chapter 5 - JDO Connections

This chapter describes three essential interfaces for using JDO.& nbsp ... and deleting database objects, are provided in the next chapter ( Chapter 6 ). 5.1& nbsp ;& nbsp ;javax ... .2& nbsp ;& nbsp ;javax.jdo.PersistenceManager The javax.jdo.PersistenceManager interface represents

[ODB1] Chapter 1 - About ObjectDB

.1& nbsp ;& nbsp ;Why ObjectDB? There are many benefits to using ObjectDB. This section describes some ... developing software without a debugger. 1.2& nbsp ;& nbsp ;ObjectDB Operating Modes ObjectDB for Java/JDO ... URL), because the JDO API is the same for both modes. 1.3& nbsp ;& nbsp ;ObjectDB Editions ObjectDB