ObjectDB Database Search

51-100 of 200 results

ObjectDB current status of the BIRT plugin

ObjectDB current status of the BIRT plugin

Java 8 time API

Java 8 time API

i can't change my password first time

i can't change my password first time

JPA Attributes Annotations

and calendar types to specific SQL temporal formats (modern java. time types are mapped automatically ... . An enumeration defining the SQL type mapping: DATE , TIME , or TIMESTAMP . For more details, see the Persistent Classes chapter in the ObjectDB manual.

JPA Queries

TypedQuery in modern applications to ensure compile- time type safety. A sub-interface of Query used ... predicates for the WHERE clause, mathematical operations, and conditional logic. Helper interfaces for manipulating temporal expressions and date/ time components.

ObjectDB - JPA Object Database for Java

Mapping (ORM) tools can reduce some manual work but cannot eliminate the extra processing time ... when the object data model is complex. See JPA benchmark results...   Reduce development time . Improve

ObjectDB 2.9 Developer's Guide

you productive with ObjectDB and JPA in a short time . Guide Structure Demonstrates basic database ... proficient in a short time . After reading this guide you may want to extend your knowledge of JPA by reading a book on JPA.

jakarta.persistence.TypedQuery

properties and hints. Since: Jakarta Persistence (JPA) 2.0 LockModeType getLockMode () Get the current ... of the query. Deprecated: Newly-written code should use the date/ time types defined in java. time ... correspond to a parameter of the query. Deprecated: Newly-written code should use the date/ time types

jakarta.persistence.EntityManagerFactory

, there is exactly one EntityManagerFactory for each persistence unit: // create a factory at initialization time ... with the caller, then the EntityManager is associated with this current transaction. If the given ... . This method returns a new EntityManager instance each time it is invoked. The EntityManager.isOpen

Database Transaction Replayer

.objectdb.Replayer my.odb If objectdb.jar is not in the current directory, you must specify a path

Storing JPA Entities

. The exception is thrown either by persist , if the existing entity is currently managed by

What are the system requirements for using ObjectDB?

ObjectDB requires Java 8 or later. As a pure Java application, ObjectDB should be able to run on any platform that supports the Java Standard Edition. Either the Java Development Kit (JDK) or the Java Runtime Environment (JRE) can be used. A version of ObjectDB for .NET is currently under development.

JPA Container Injection Annotations

a shared, thread-safe proxy associated with the current transaction. Specifies the lifetime scope

Database Doctor

objectdb.jar com.objectdb.Doctor my.odb If objectdb.jar is not in the current directory

Can I use ObjectDB with languages other than Java?

ObjectDB can be used by Java Virtual Machine (JVM) languages, such as Java, Kotlin, Groovy and Scala. It can also be used with other languages, such as Python, JavaScript, Ruby and PHP, but currently only with their JVM implementations (e.g. Jython for Python, GraalVM for JavaScript

Database Management Settings

can take considerable processing time . The enabled attribute ( "true" or "false" ) specifies

JPA Entity Fields

of a new entity is 1 when it's stored in the database for the first time . In every transaction

ObjectDB License Agreement [ver. 2.0.4]

is effective until terminated. The Customer may terminate the agreement at any time by simply destroying

Schema Update

the specified schema updates every time a database is opened. When you use client-server mode

JPA Query Expressions (JPQL / Criteria)

) String expressions ( like , length , locate , lower , upper , concat , substring , …) Date and time

ObjectDB License

to change the terms and conditions, the products, services, prices, and programs mentioned in this site at any time , at its sole discretion.

WHERE clause (JPQL / Criteria API)

, defining appropriate indexes can significantly improve query execution time . WHERE filter in multi

JPA Runtime Tuning & Configuration

the time limit (in milliseconds) for an operation. Scope Usage EntityManagerFactory Set

JPA Query API

dynamic query construction because you can build the query string dynamically at run time . The JPA

JPA Connections and Transactions

of the EntityManagerFactory itself might be less efficient, but it is a one- time operation

jakarta.persistence.Basic

.math.BigInteger or java.math.BigDecimal , java. time .LocalDate , java. time .LocalTime , java. time .LocalDateTime , java. time .OffsetTime , java. time .OffsetDateTime , java. time .Instant , or java. time .Year java.util.Date or java.util.Calendar , java.sql.Date , java.sql. Time , or java.sql.Timestamp , byte

jakarta.persistence.EntityExistsException

the EntityExistsException or another PersistenceException may be thrown at flush or commit time . The current transaction ... . The current transaction, if one is active, will be marked for rollback. If the entity already exists

jakarta.persistence.EntityTransaction

(JPA) 1.0 void commit () Commit the current resource transaction, writing any unflushed changes ... whether the current resource transaction has been marked for rollback. Returns: boolean indicating ... back the current resource transaction. Throws: IllegalStateException - if isActive is false

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

jakarta.persistence.FlushModeType

is unspecified. If there is no transaction active or the persistence context is not joined to the current ... COMMIT Flushing to occur at transaction commit. The provider may flush at other times , but is not

jakarta.persistence.LockTimeoutException

transaction rollback. This exception may be thrown as part of an API call, at, flush or at commit time . The current transaction, if one is active, will be not be marked for rollback. Since: Jakarta Persistence

jakarta.persistence.criteria.LocalDateTimeField

, numbered from 1. Since: Jakarta Persistence (JPA) 1.0 HOUR The hour of the day in 24-hour time ... a fractional part representing fractions of a second Since: Jakarta Persistence (JPA) 1.0 TIME The time

jakarta.persistence.Column

of decimal digits to use for storing fractional seconds in a SQL time or timestamp column. Applies only to columns of time or timestamp type. The default value -1 indicates that fractional seconds should not be stored in a time column, or that the maximum number of digits supported by the database and JDBC

jakarta.persistence.EntityManagerFactory.createEntityManager(SynchronizationType)

EntityManager instance each time it is invoked. The EntityManager.isOpen method will return true on the returned ... with the current JTA transaction Returns: entity manager instance. Throws: IllegalStateException

jakarta.persistence.EntityManagerFactory.createEntityManager(SynchronizationType,Map)

of properties. This method returns a new EntityManager instance each time it is invoked. The EntityManager ... - how and when the entity manager should be synchronized with the current JTA transaction map - properties

jakarta.persistence.MapKeyTemporal

the date/ time types defined in java. time . Since: Jakarta Persistence (JPA) 2.0 Annotation Elements

jakarta.persistence.Enumerated

to be EnumType.ORDINAL . Example: public enum EmployeeStatus {FULL_ TIME , PART_ TIME , CONTRACT} public enum

jakarta.persistence.criteria.TemporalField

Jakarta Persistence (JPA) Interface jakarta.persistence.criteria.TemporalField Type Parameters: - the resulting type of the extracted value - the temporal type (date, time , or datetime) Each instance represents a type of field which can be extracted from a date, time , or datetime

jakarta.persistence.Version

: int , Integer , short , Short , long , Long , java.sql.Timestamp , java. time .Instant , java. time

jakarta.persistence.EntityManager.getLockMode(Object)

(    Object entity ) Get the current lock mode held by this persistence context on the given ... currently held. Throws: IllegalArgumentException - if a transaction is active but the given instance ... if the entity manager has not been joined to the current transaction. Since: Jakarta Persistence (JPA) 2.0

jakarta.persistence.PersistenceContext.synchronization

synchronized with the current transaction or whether the persistence context must be explicitly joined to the current transaction by means of the EntityManager.joinTransaction method. Default

jakarta.persistence.EntityManager.isJoinedToTransaction()

Jakarta Persistence (JPA) Method in jakarta.persistence.EntityManager boolean isJoinedToTransaction() Determine whether the entity manager is joined to the current transaction. Returns false if the entity manager is not joined to the current transaction or if no transaction is active. Returns: boolean. Since: Jakarta Persistence (JPA) 2.1

jakarta.persistence.EntityNotFoundException

and the entity no longer exists in the database. The current transaction, if one is active

jakarta.persistence.TypedQuery.setParameter(Parameter,Date,TemporalType)

-written code should use the date/ time types defined in java. time . Since: Jakarta Persistence (JPA) 1.0

JPA Web App Tutorial - Maven Project

: mvn package jetty:run The current directory should be  guestbook-web (containing the  pom

Java EE JPA Tutorial - Maven Project

the command line: mvn package The current directory should be  guestbook-jee6

Getting Started with JPA - Maven Project

The current directory should be points-console (containing the pom.xml file). No need to download

Spring MVC JPA Tutorial - Maven Project

jetty:run The current directory should be  guestbook-spring (containing the  pom.xml file

Step 4: Run the Application

You can run the application now by right clicking the Main node (in the [Projects] window) and selecting Run File . The expected output in the [Output] window, is: Total Points: 1000 Average X: 499.5 (0,0) (1,1) (2,2) (3,3) : : (998,998) (999,999) When you run the application for the first time

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