ObjectDB Database Search

1-50 of 200 results

Numbers in JPQL and Criteria Queries

of a numeric argument. The result is always a positive number or zero. For example: ABS(-5) evaluates to 5 ... ); // expression + number Expression sum3 = cb. sum (1000, path); // number + expression // Subtraction ... ); // expression - number Expression diff3 = cb. diff (1000, path); // number - expression

jakarta.persistence.criteria.CriteriaBuilder.power(Expression,Number)

Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.CriteriaBuilder Expression power (    Expression x ,    Number y ) Create an expression that returns the first argument raised to the power of its second argument. Parameters: x - base y - exponent Returns

jakarta.persistence.criteria.CriteriaBuilder.gt(Expression,Number)

Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.CriteriaBuilder Predicate gt (    Expression x ,    Number y ) Create a predicate for testing whether the first argument is greater than the second. Parameters: x - expression y - value Returns: greater-than predicate. Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.criteria.CriteriaBuilder.le(Expression,Number)

Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.CriteriaBuilder Predicate le (    Expression x ,    Number y ) Create a predicate for testing whether the first argument is less than or equal to the second. Parameters: x - expression y - value Returns

jakarta.persistence.criteria.CriteriaBuilder.ge(Expression,Number)

Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.CriteriaBuilder Predicate ge (    Expression x ,    Number y ) Create a predicate for testing whether the first argument is greater than or equal to the second. Parameters: x - expression y - value Returns

jakarta.persistence.criteria.CriteriaBuilder.lt(Expression,Number)

Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.CriteriaBuilder Predicate lt (    Expression x ,    Number y ) Create a predicate for testing whether the first argument is less than the second. Parameters: x - expression y - value Returns: less-than predicate. Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.criteria.CriteriaBuilder.quot(Expression,Number)

Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.CriteriaBuilder Expression quot (    Expression x ,    Number y ) Create an expression that returns the quotient of its arguments. Parameters: x - expression y - value Returns: quotient. Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.criteria.CriteriaBuilder.quot(Number,Expression)

Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.CriteriaBuilder Expression quot (    Number x ,    Expression y ) Create an expression that returns the quotient of its arguments. Parameters: x - value y - expression Returns: quotient. Since: Jakarta Persistence (JPA) 1.0

GROUP BY and HAVING clauses

the five aggregate functions of SQL: COUNT : Returns a long value that represents the number ... a double . MIN : Returns the minimum of comparable values, such as numbers , strings, and dates. MAX : Returns the maximum of comparable values, such as numbers , strings, and dates. For each starting letter

Number of current connections

Is there any way to find out the number of current connections to the DB server? natmaclin Natalia Levine Currently not. You may subscribe to this feature request and update it according to your needs. support Support

How to retrieve the ObjectDB version number?

, which is the best (JPA) method to get the version number ?   Peter       pezifromvienna Peter

JPA Optimistic and Pessimistic Locking

. Optimistic Locking ObjectDB maintains a version number for every entity. The initial version of a new ... ;is modified, its version number is automatically incremented by one. Version numbers are managed internally ... every database object that is being updated or deleted and compares the version number of that object in

Database Management Settings

to use for caching database file pages. The max-threads attribute specifies the maximum number ... requests are queued until previous requests are completed. The optimal number is usually larger than the number of available CPU cores but not so large that it causes performance degradation from

Auto Generated Values

strategies. The AUTO strategy ObjectDB maintains a global number generator for each database ... ; : } When a transaction is committed, the AUTO strategy uses the global number generator to generate ... . The allocationSize attribute specifies the number of IDs in each allocation. Some IDs in an allocation

Paths and Types in JPQL and Criteria API

numbers , booleans, strings, and dates. Values of simple types are more useful in queries because they have special operators and functions (for example, for strings and numbers ). They can also be compared ... to collections, maps, or values of simple types (such as numbers , booleans, strings, and dates). For a path

JPA Persistable Types

, enum values are represented internally by their ordinal numbers . Use caution when modifying an enum ... only at the end of the list, which gives them new, higher ordinal numbers . Alternatively, enum values ... are stored as ordinal numbers (0, 1, and 2), while values of the color3 field are stored as strings

JPA Entity Fields

accessed. Version Field ObjectDB maintains a version number for every entity. The initial version ... that modifies an entity, its version number is automatically incremented by one. Version fields are used

Server Configuration

the maximum number of simultaneous connections that the server accepts. A connection request that exceeds this limit causes an exception on the client. A value of 0 indicates no limit on the number

Collections in JPQL and Criteria Queries

(collection) function returns the number of elements in a specified collection. For example: SIZE(c.languages) returns the number of elements in the languages collection. [NOT] MEMBER [OF] The [NOT] MEMBER

WHERE clause (JPQL / Criteria API)

. In multi-variable queries, the number of tuples for iteration can be very large even if the database ... . get ("population"), p)); Multiple restrictions The second where method takes a variable number of Predicate

Query Parameters in JPA

its superinterface, Parameter ) rather than by names or numbers . For more details, see the Parameters in Criteria ... number of methods is not typical for JPA, which is generally known for its lean and simple API

Running JPA Queries

always returns a single result object, which is a Long object that represents the number of Country objects in ... the number of objects that the query updated or deleted. The Query Structure section provides more details about DELETE and UPDATE queries.

Server User List

number of subdirectories allowed in that directory. This count includes nested subdirectories. The files attribute specifies the maximum number of database files the directory can contain. The disk

ORDER BY clause (JPQL / Criteria API)

expression whose type is comparable (for example, numbers , strings, and date values) and is derived from ... a variable number of Order arguments (or a List of Order instances) rather than Expression instances

JPA Primary Key

, ObjectDB automatically sets the primary key for every new entity. The key is a sequential 64-bit number ... contiguously and can be collected by accessing a minimum number of database pages. On the other hand

jakarta.persistence.criteria.CriteriaBuilder

, that is, Euler's number e raised to the power of its argument. Parameters: x - expression Returns ... , Number y ) Create a predicate for testing whether the first argument is greater than or equal ... ( Expression x , Number y ) Create a predicate for testing whether the first argument is greater

SELECT clause (JPQL / Criteria API)

provides a shortcut method, multiselect , which takes a variable number of arguments representing

Setting and Tuning of JPA Queries

the page number (starting from 0 for the first page), the following code retrieves the results

Storing JPA Entities

.xml . Batch store Storing a large number of entities requires special consideration. You can use

ObjectDB License Agreement [ver. 2.0.4]

by this agreement. 3. The free edition of the Software includes restrictions on the number of classes

Strings in JPQL and Criteria Queries

- counting characters in a string The LENGTH (str) function returns the number of characters in

FROM clause (JPQL / Criteria API)

; that is, the number of round trips to the database is much larger than necessary. A simple solution is to use

Logical Operators in JPQL and Criteria API

or large Additional factory methods are available that accept a variable number of predicates

ObjectDB License

a product to an unlimited number of end users. For a quote please contact ObjectDB Sales (sales

DELETE Queries in JPA/JPQL

is active. If successful, the executeUpdate method returns the number of objects that were deleted

Privacy Policy

picture, profile signature, company name, phone number , billing address, country,  payment

Eclipse Public License - v 1.0

will be given a distinguishing version number . The Program (including Contributions) may always be distributed

UPDATE SET Queries in JPA/JPQL

. On success, the executeUpdate() method returns the number of objects that the query modified. Selective

General Settings and Logging

specifies the archive directory. The retain attribute specifies the number of days to retain archived

Database Explorer

the Edit New Entities... command. In the dialog box, select the entity class and specify the number

jakarta.persistence.criteria.LocalDateTimeField

, numbered from 1. Since: Jakarta Persistence (JPA) 1.0 HOUR The hour of the day in 24-hour time, numbered from 0 to 23. Since: Jakarta Persistence (JPA) 1.0 MINUTE The minute of the hour, numbered from 0 to 59. Since: Jakarta Persistence (JPA) 1.0 MONTH The calendar month of the year, numbered from 1

jakarta.persistence.TypedQuery

statement. Inherited from Query Returns: the number of entities updated or deleted. Throws ... (JPA) 2.0 int getMaxResults () The maximum number of results the query object was set to retrieve ... Query Returns: maximum number of results. Since: Jakarta Persistence (JPA) 2.0 Parameter getParameter

jakarta.persistence.Query

executeUpdate () Execute an update or delete statement. Returns: the number of entities updated or deleted ... int getMaxResults () The maximum number of results the query object was set to retrieve. Returns Integer#MAX_VALUE if setMaxResults was not applied to the query object. Returns: maximum number

jakarta.persistence.StoredProcedureQuery

Persistence (JPA) 2.0 int getMaxResults () The maximum number of results the query object was set ... . Inherited from Query Returns: maximum number of results. Since: Jakarta Persistence (JPA) 2.0 Object ... , numbered from 0 Returns: the same query instance. Throws: IllegalArgumentException - if the argument

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

[ODB1] Chapter 6 - Persistent Objects

, and its toString() returns a temporary negative number , because a database object ID is not allocated ... ); String s1 = oid.toString(); // s1 contains a temporary negative number pm.currentTransaction().commit(); String s2 = oid.toString(); // s2 contains a permanent positive number The above code shows

[ODB1] Chapter 8 - ObjectDB Server

the same port number that was specified during server startup in order for the stop/restart command ... of any number of users. As long as only one user is involved, a simple configuration as demonstrated in

[ODB1] Chapter 9 - ObjectDB Explorer

the number of objects to construct and their type. Additional information is required for specific ... and their order of appearance. This is especially useful when working with classes with a large number

[ODB1] Chapter 3 - Persistent Classes

, Character , Integer , Long , Float , Double , Number and String . Selected classes in package java ... is stored in the database. For example, a field whose type is Number (which is an abstract class

[ODB1] Chapter 7 - JDOQL Queries

.Collection instance and managed like any ordinary Java collection. For example, the number of retrieved ... of the candidate class. This may be useful, for instance, to obtain the number of objects of a specific class