ObjectDB Database Search

51-100 of 200 results

objectdb-2.6.9_02 (with "objectdb.temp.no-enhancement-crc-check") vs. generic classes with interfaces: detailed investigation

objectdb -2.6.9_02 (with " objectdb .temp.no-enhancement-crc-check" system property ... there are now obsolete): -  Issue #1924 - ObjectDB -2.6.9: Failed to commit transaction: Failed ... with the other generic value wrapper examples, as it exhibits a problem with ObjectDB that the others do not

Privacy Policy

", "We", "Us" or "Our" in this Agreement) refers to ObjectDB Software Ltd, 109 Vernon House Friar Lane Unit 632 ... visit and user actions during page views). Website  refers to ObjectDB Website, accessible from  https://www. objectdb .com You  means the individual accessing or using the Service, or

JPA Core Types

engine and performing CRUD operations in ObjectDB . These interfaces and classes manage the entity ... your ObjectDB database. An alternative bootstrap class that offers a programmatic API for configuration ... this once during application initialization for each persistence unit (typically for each ObjectDB database

Defining a JPA Entity Class

and retrieve Point objects from the database: package com. objectdb .tutorial; import jakarta ... an object database, ObjectDB supports implicit object IDs, so an explicit primary key is not required. However, ObjectDB also supports explicit JPA primary keys , including composite primary keys

Database Schema Evolution

(their schema) are transparent to ObjectDB . This includes adding, removing, or modifying constructors, methods, and non-persistent fields. However, ObjectDB detects additions, deletions, and modifications ... : In client-server mode, the ObjectDB server must be restarted after a schema change. Automatic

Auto Generated Values

is automatically generated. This annotation is primarily for primary key fields, but ObjectDB also supports ... strategies. The AUTO strategy ObjectDB maintains a global number generator for each database ... this strategy. ObjectDB does not have tables, so the TABLE and SEQUENCE strategies are almost identical

Retrieving JPA Entities

the field from cascaded retrieval. ( ObjectDB currently does not distinguish between these two annotations ... or @ManyToMany annotation enables cascaded retrieval for the field. ( ObjectDB currently does not ... object graph is in memory. This illusion, based on ObjectDB's lazy, transparent activation

What is the Java Persistence API (JPA)?

(as classes and objects). ObjectDB is the only database management system with built in support of the Java Persistence API (JPA). By interacting with ObjectDB using standard JPA you can keep your application portable. The unique benefit of using ObjectDB is that the overhead of an intermediate ORM

Strings in JPQL and Criteria Queries

the remainder of the string, starting from the specified position. Java string methods ( ObjectDB extension) ObjectDB also supports standard Java String methods. For example: 'Canada'.length() is evaluated

Date and Time in JPQL and Criteria Queries

standard methods for extracting date and time parts, but some JPA implementations, including ObjectDB , support these functions as extensions. ObjectDB supports six functions for extracting the YEAR

Collections in JPQL and Criteria Queries

not contain 'English' , and FALSE otherwise. As an extension to standard JPQL, ObjectDB allows you to use both the IN and MEMBER OF operators with any type of collection. In ObjectDB , these operators

JPA Extended API Reference Guide

. For a comprehensive guide on using JPA with ObjectDB , refer to the ObjectDB manual .

Numbers in JPQL and Criteria Queries

: + (addition), - (subtraction), * (multiplication), and / (division). ObjectDB also supports the modulo ... , similar to the Java modulo operator ( % ). ObjectDB also supports the % operator as an extension

JPA Queries

to ObjectDB ). Interface for declaring and handling named or positional query parameters. Use ... instructions, refer to the JPA Query API section in the ObjectDB manual. Criteria query API

Literals in JPQL and Criteria Queries

ObjectDB also supports hexadecimal (for example, 0xFF and 0xFFL ) and octal (for example, 077 and 077L ... marks (for example, 'Adam''s' ). ObjectDB also supports the Java and JDO syntax for string literals

JPA Value Generation Annotations

Jakarta Persistence (JPA) supports automatic value generation. This feature is primarily useful for primary key fields, but ObjectDB extends support to regular persistent fields. Several annotations ... columns. For more details about automatic value generation, see the Generated Value section in the ObjectDB Manual.

JPA Query API

is preferred. Using TypedQuery with ObjectDB has another advantage. In the context of the preceding ... because it introduces the Country class to ObjectDB . Dynamic JPQL, Criteria API, and named queries In

JPA Metamodel and Graphs

repository for all managed types within a persistence unit (or an ObjectDB database). It provides methods ... and further explanation, refer to the JPA Metamodel API section in the ObjectDB manual. Criteria query

Step 1: Create a Java Project

the project. To add ObjectDB /JPA support for the project: Right click the Libraries folder in the [Projects] window and select Add Jar/Folder... Select the objectdb .jar file from the bin subdirectory of the ObjectDB installation directory and click Open . Now you should have a new NetBeans project

Step 7: Run the Spring Web App

automatic enhancement (weaving) in Tomcat it has to be run with ObjectDB as a Java agent ... without specifying a Java agent. Since we are using ObjectDB in embedded mode - the database file ... ; ObjectDB Explorer : This is the end of the tutorial. Learn more about ObjectDB and JPA by reading the  Manual .

Step 4: Run the Application

) When you run the application for the first time, a new ObjectDB database file is generated in the db sub-directory under the ObjectDB installation directory. Consequent runs of the application will use ... by opening it in the ObjectDB Explorer : This is the end of the Eclipse JPA tutorial. Learn more about ObjectDB and JPA by reading the Manual .

Eclipse/JPA Java EE Tutorial

GlassFish, ObjectDB and JPA. The demo web application manages a basic guestbook page. Every visitor ... by a Guest entity and all the Guest entities are stored in an ObjectDB database. Required Software ... for Java EE Developers. GlassFish Server 3.0.1 (or above). The last version of ObjectDB (just download

NetBeans/JPA Java EE Tutorial

NetBeans - using GlassFish, ObjectDB and JPA. The demo web application manages a basic guestbook page ... the guestbook is represented by a Guest entity and all the Guest entities are stored in an ObjectDB database ... above). NetBeans - Java or All bundle The last version of ObjectDB (just download and extract). The tutorial

Step 1: Create a Java EE Web Project

required). To add ObjectDB /JPA support for the project: Right click the Libraries folder in the [Projects] window and select Add Jar/Folder... Select the objectdb .jar file from the bin subdirectory of the ObjectDB installation directory and click Open . Now you should have a NetBeans Java EE 6 Web

Step 2: Define a JPA Entity Class

To store objects in an ObjectDB database using JPA we need to define an entity class: Open ... definition in an XML file is missing. This is discussed in the ObjectDB Manual . But nevertheless, this class is a valid ObjectDB entity class, despite the warning. The next step is adding a context

Step 2: Entity Class and Persistence Unit

To store objects in an ObjectDB database using JPA we need to define an entity class: Open the [New Java Class] dialog box, e.g. by right clicking the project node (in the [Package Explorer] window ... to the persistence.xml file: com. objectdb .jpa.Provider Now ObjectDB should be used as a JPA provider

Eclipse/JPA Spring MVC Web Tutorial

Eclipse - using ObjectDB , JPA, Tomcat (or GlassFish) and Maven. The demo web application manages ... are stored in an ObjectDB database. Required Software For this tutorial you will need the following ... . Therefore, required JAR files ( ObjectDB , Spring Framework) will be downloaded automatically during build

Step 2: Define a JPA Entity Class

To store objects in an ObjectDB database using JPA we need to define an entity class: Open ... indicates that a persistence unit definition in an XML file is missing. This is discussed in the ObjectDB Manual . But nevertheless, this class is a valid ObjectDB entity class, despite the warning

Step 3: Add a Context Listener Class

The Guest entities will be stored in an ObjectDB database, which will be represented by a JPA's ... the EntityManagerFactory & Enhance: public void contextInitialized(ServletContextEvent e) { com. objectdb .Enhancer.enhance("guest.*"); EntityManagerFactory emf = Persistence.createEntityManagerFactory("$ objectdb

NetBeans/JPA Web Application Tutorial

Server 6.0 ( some modifications are needed for Tomcat 7.0 ), ObjectDB and JPA. The demo web ... entities are stored in an ObjectDB database. Required Software For this tutorial you will need the following software: Java JDK (6.0 or above). NetBeans - Java or All bundle The last version of ObjectDB

Step 1: Create a Java EE 6 Web Project

dynamic web project. To add ObjectDB /JPA support to the project, drag the objectdb .jar file from ... : You should now have an Eclipse Java EE 6 project with ObjectDB /JPA support. The next step is creating a JPA Entity class .

Step 6: Run the Java EE 6 Application

] window) and selecting Run As Run on Server Finish : Since we are using ObjectDB in embedded mode ... \Guestbook\WEB-INF ). You can stop the GlassFish server and open the database file in ObjectDB Explorer : This is the end of the tutorial. Learn more about ObjectDB and JPA by reading the Manual .

Step 2: Entity Class and Persistence Unit

To store objects in an ObjectDB database using JPA we need to define an entity class: Open the [New Entity Class] dialog box, e.g. by right clicking the project node (in the [Projects] window ... with the following new content: com. objectdb .jpa.Provider Now ObjectDB should be used as a JPA provider

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 in ObjectDB Explorer : This is the end of the tutorial. Learn more about ObjectDB and JPA by reading the Manual .

NetBeans/JPA Spring MVC Web Tutorial

NetBeans - using JPA, ObjectDB , Tomcat (or GlassFish) and Maven. The demo web application ... are stored in an ObjectDB database. Required Software For this tutorial you will need the following ... . Therefore, required JAR files ( ObjectDB , Spring Framework) will be downloaded automatically

Step 2: Entity Class and Persistence Unit

To store objects in an ObjectDB database using JPA we need to define an entity class: Right click ... and paste to copy the following content to the  persistence.xml file: com. objectdb .jpa.Provider Now ObjectDB should be used as a JPA provider with the specified database url. The next step

Eclipse/JPA Web Application Tutorial

;to create and run a database driven Java web application in Eclipse - using Tomcat 6, ObjectDB and JPA ... and all the Guest entities are stored in an ObjectDB database. Required Software For this tutorial ... Tomcat Server 6.0 ( some modifications are needed for Tomcat 7.0 ). The last version of ObjectDB

Step 2: Entity Class and Persistence Unit

To store objects in an ObjectDB database using JPA we need to define an entity class: Open the [New Entity Class] dialog box, e.g. by right clicking the project node (in the [Projects] window ... file with the following new content: com. objectdb .jpa.Provider guest.Guest Now ObjectDB should be used

Step 6: Run the Java EE 6 Application

execution URI). Since we are using ObjectDB in embedded mode - the database file is created ... server and open the database file in ObjectDB Explorer : This is the end of the tutorial. Learn more about ObjectDB and JPA by reading the Manual .

Step 6: Run the Web Application

). 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 the database file in ObjectDB Explorer : This is the end of the tutorial. Learn more about ObjectDB and JPA by reading the Manual .

JPA Web App Tutorial - Maven Project

and install ObjectDB or a Java web server - Maven will download the ObjectDB jar and the Jetty

Spring MVC and JPA Tutorial

This tutorial demonstrates how to create and run a full Java Spring MVC (Model View Controller) web application using Tomcat (or GlassFish), JPA, ObjectDB and Maven. The demo web application manages ... an ObjectDB database. This tutorial is available in the following versions: In addition, the demonstrated application is available as a Maven project:

Report Generation with BIRT and JPA

This tutorial demonstrates how to create reports based on data in an ObjectDB database using the popular open source Business Intelligence and Reporting Tools (BIRT). In order to keep things as simple as possible - we will use the basic  points.odb ObjectDB database file from the Getting

JPA Tutorials

The following tutorials demonstrate how to develop database driven applications using JPA and the ObjectDB ODBMS (Object Oriented Database Management System). Console JPA Tutorial The Quick Start tutorial demonstrates how to use ObjectDB and JPA in a console application: Quick Start with JPA

Java EE Web Tutorial

This tutorial demonstrates how to create and run a full Java EE 6 MVC (Model View Controller) web application using GlassFish, ObjectDB and JPA. Since this web application uses Java EE 6 EJB ... is represented by a  Guest entity and all the  Guest entities are stored in an ObjectDB database

Getting Started with JPA - Maven Project

and install ObjectDB - Maven will download the ObjectDB jar automatically. You may also open and run

JPA Web Application Tutorial

This tutorial demonstrates how to create and run a database driven Java web application using Tomcat 6, ObjectDB and JPA. The demo web application manages a basic guestbook page. Every visitor ... by a  Guest entity and all the  Guest entities are stored in an ObjectDB database

Step 2: Define a JPA Entity Class

To store objects in an ObjectDB database using JPA we need to define an entity class: Open the [New Java Class] dialog box, e.g. by right clicking the project node (in the [Package Explorer] window ... a context listener class that will manage a JPA's EntityManagerFactory representing the ObjectDB database.

Getting Started with JPA

. That is one of the benefits of ObjectDB , which is the only Object Database with built in support of JPA. The sample application is also explained in details in  Chapter 1 of the  ObjectDB Manual , but if you prefer

Spring MVC JPA Tutorial - Maven Project

and install ObjectDB or a Java web server - Maven will download the ObjectDB jar and the Jetty