ObjectDB Database Search
1-50 of 200 resultsLogical Operators in JPQL and Criteria API :area Valid operands for the AND operator are TRUE , FALSE , or NULL . The following table shows how the AND operator is evaluated based on its two operands: TRUE FALSE NULL TRUE TRUE FALSE NULL FALSE FALSE FALSE FALSE NULL NULL FALSE NULL NULL represents an unknown value. Therefore, if one operand | |
Lock prevents PersistenceManager.close when retainValues = false to false . If retainValues == true, the code proceeds as expected. I don't understand ... close operation. The retainValues == false mode affects commit operations but should not | |
@JoinColumn(nullable=false) During the evaluation of ObjectDB (We're currently developing with EclipseLink/mysql) I noticed was the following: I marked a @Column as nullable= false Than I tried to save it with the property ... @JoinColumn(name="alarm_group_id", nullable= false ) private AlarmGroup alarmGroup; bugsbunny2003 Marcel Rokers | |
recovery enabled="false", still creates tablename.odb$ filesrecovery enabled="false", still creates tablename.odb$ files | |
Database Management Settings " false " ) specifies whether a recovery file is used. The sync attribute ( "true" or " false ... sync= " false " results in much faster database writes, but sync="true" is safer for production ... " or " false " ) specifies whether recording is used. The sync attribute ( "true" or " false " ) specifies | |
Collections in JPQL and Criteria Queries.languages IS EMPTY evaluates to TRUE if the collection is empty and FALSE otherwise. c.languages IS NOT EMPTY evaluates to TRUE if the collection is not empty and FALSE otherwise. SIZE The SIZE ... 'English' , and FALSE otherwise. 'English' NOT MEMBER OF c.languages evaluates to TRUE | |
Literals in JPQL and Criteria Queries, including NULL , boolean literals ( TRUE and FALSE ), numeric literals (for example, 100 ), string ... supports two boolean literals: TRUE and FALSE . Because JPQL is case-insensitive, TRUE is equivalent to true and True , and FALSE is equivalent to false and False . Numeric literals JPQL supports | |
Entity Management Settings settings: The agent attribute (with a value of "true" or " false " ) specifies whether to load ... . The element The hollow attribute of the element (with a value of "true" or " false " ) specifies ... (with a value of "true" or " false " ) specifies whether to use serialization as a fallback persistence | |
Database Schema Evolution ( 0 , false , or null ). Fields in the old schema that do not have matching fields in the new schema ... , and the new field is initialized with a default value ( 0 , false , or null ). The following type ... values (the default). From any type to Boolean or boolean . ( 0 , null , and false are converted | |
Comparison in JPQL and Criteria API One NULL operand Two NULL operands = NULL NULL = NULL NULL NULL NULL == FALSE TRUE != TRUE FALSE Comparison operators always evaluate to TRUE , FALSE , or NULL . When neither operand is NULL (a case not shown in the table), the operator evaluates to either TRUE or FALSE . In this case, == is equivalent | |
Strings in JPQL and Criteria Queries: c.name LIKE '_r%' is TRUE for 'Brazil' and FALSE for 'Denmark' . c.name LIKE '%' is always TRUE (for any c.name value). c.name NOT LIKE '%' is always FALSE (for any c.name value). To match a literal ... '%\%' ESCAPE '\' is evaluated to FALSE . In the preceding expressions, the first percent sign | |
JPA Entity Fields EntityWithFieldSettings { @Basic ( optional = false ) Integer field1; @OneToOne ( cascade = CascadeType ... . By default, null values are allowed. Specifying optional= false , as shown for field1 , throws | |
FROM clause (JPQL / Criteria API), CURRENT_TIME, CURRENT_TIMESTAMP,DELETE, DESC, DISTINCT, ELSE, EMPTY, END, ENTRY, ESCAPE, EXISTS, FALSE | |
Index Definition or a unique index if you specify unique="true" . The default value for unique is false | |
JPA Shared (L2) Entity Cache classes except those explicitly marked as not cacheable . For example: @Cacheable ( false ) @Entity | |
JPA Components Annotations caching: Specifies whether the entity is eligible for the second-level cache. Set to true or false | |
Server User List - 192.18.194.255 and from 127.0.0.1 . The admin attribute, with a value of true or false , specifies | |
SSL Configuration The configuration element specifies Secure Sockets Layer (SSL) settings for secure client-server communication. The default configuration file contains the following element: The enabled attribute of the ssl element, which can be set to true or false , specifies whether SSL is used. As shown in | |
jakarta.persistence.criteria.CriteriaBuilder () Create a disjunction (with zero disjuncts). A disjunction with zero disjuncts is false . Returns ... testing for a false value. Parameters: x - expression to be tested Returns: predicate. Since: Jakarta ... , the predicate will be false . Parameters: elem - element expression collection - expression Returns: is-member | |
jakarta.persistence.OneToOne(optional = false ) @JoinColumn(name = "CUSTREC_ID", unique = true, nullable = false , updatable = false ) public CustomerRecord getCustomerRecord() { return customerRecord; } // On CustomerRecord class: @OneToOne(optional = false , mappedBy = "customerRecord") public Customer getCustomer() { return | |
jakarta.persistence.PersistenceUnitUtil persistence context is an instance of the given entity class, or false otherwise. This method ... is to be determined entity - entity instance containing the attribute Returns: false if entity's state ... : false if entity's state has not been loaded or if the attribute state has not been loaded, else true | |
jakarta.persistence.ManyToOne = false ) @JoinColumn(name = "CUST_ID", nullable = false , updatable = false ) public Customer ... optional (Optional) Whether the association is optional. If set to false then a non-null relationship | |
jakarta.persistence.EntityTransaction to the database. Throws: IllegalStateException - if isActive is false . RollbackException - if the commit ... whether the transaction has been marked for rollback. Throws: IllegalStateException - if isActive is false ... back the current resource transaction. Throws: IllegalStateException - if isActive is false . PersistenceException | |
jakarta.persistence.StoredProcedureQuery if the first result is a result set, and false if it is an update count or there are no results ... can then be used to test for further results. If execute or hasMoreResults returns false ... result corresponds to a result set, and false if it is an update count or if there are no results | |
jakarta.persistence.Column(name = "DESC", nullable = false , length = 512) public String getDescription() { return description ... = false , precision = 12, scale = 2) public BigDecimal getCost() { return cost; } Portable ... entailed by the primary key mapping and to constraints specified at the table level. Default: false | |
jakarta.persistence.OneToMany", nullable = false ) public Customer getCustomer() { return customer; } Example 2: One-to-Many association ... : @ManyToOne @JoinColumn(name = "CUST_ID", nullable = false ) public Customer getCustomer() { return customer ... . Default: false Since: Jakarta Persistence (JPA) 2.0 Additional JDK methods inherited from java.lang | |
jakarta.persistence.PersistenceUtil whose load state is to be determined entity - entity containing the attribute Returns: false if entity's ... : false if the entity has not been loaded, else true. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.MapKeyColumn and to constraints specified at the table level. Default: false Since: Jakarta Persistence (JPA) 1.0 boolean nullable (Optional) Whether the database column is nullable. Default: false Since: Jakarta | |
jakarta.persistence.MapKeyJoinColumn. Default: false Since: Jakarta Persistence (JPA) 1.0 boolean nullable (Optional) Whether the foreign key column is nullable. Default: false Since: Jakarta Persistence (JPA) 1.0 boolean insertable | |
jakarta.persistence.Convert to a basic type , enabling a converter defined autoApply= false , overriding the use of a converter ... : false Since: Jakarta Persistence (JPA) 1.0 Additional JDK methods inherited from java.lang | |
jakarta.persistence.Converter annotation explicitly specifies a different converter . If autoApply = false , the converter applies ... type. Default: false Since: Jakarta Persistence (JPA) 1.0 Additional JDK methods inherited from java | |
jakarta.persistence.EntityManager , except for getProperties , getTransaction , and isOpen (which returns false ). If this method is called when the entity ... . Returns false if the entity manager is not joined to the current transaction or if no transaction | |
jakarta.persistence.SharedCacheMode_SELECTIVE Caching is enabled for all entities except those for which Cacheable( false ) is specified. Entities for which Cacheable( false ) is specified are not cached. Since: Jakarta Persistence (JPA) 1.0 ENABLE | |
jakarta.persistence.SharedCacheMode.DISABLE_SELECTIVE Jakarta Persistence (JPA) Enum Constant in jakarta.persistence.SharedCacheMode DISABLE_SELECTIVE Caching is enabled for all entities except those for which Cacheable( false ) is specified. Entities for which Cacheable( false ) is specified are not cached. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.Index (Optional) Whether the index is unique. Default: false Since: Jakarta Persistence (JPA) 1.0 String | |
jakarta.persistence.JoinColumn key. Default: false Since: Jakarta Persistence (JPA) 1.0 boolean nullable (Optional | |
jakarta.persistence.NamedEntityGraph can still be fully specified by an attribute node referencing a subgraph. Default: false Since: Jakarta | |
jakarta.persistence.EntityManagerFactory , which will return false . Once an EntityManagerFactory has been closed, all its entity managers are considered | |
jakarta.persistence.criteria.Subquery to be eliminated. A false value will cause duplicates to be retained. If distinct has not been specified | |
jakarta.persistence.metamodel.IdentifiableType attribute. Returns true for a simple id or embedded id; returns false for an idclass. Returns | |
jakarta.persistence.metamodel.EntityType false for an idclass. Inherited from IdentifiableType Returns: boolean indicating | |
jakarta.persistence.metamodel.MappedSuperclassType () Whether the identifiable type has a single id attribute. Returns true for a simple id or embedded id; returns false | |
jakarta.persistence.criteria.AbstractQuery results are eliminated. A true value will cause duplicates to be eliminated. A false value | |
jakarta.persistence.criteria.CriteriaQuery query results are eliminated. A true value will cause duplicates to be eliminated. A false value | |
jakarta.persistence.AttributeConverter which is declared autoApply= false , to explicitly disable conversion , or to resolve ambiguities | |
jakarta.persistence.Cache Jakarta Persistence (JPA) Interface jakarta.persistence.Cache Interface used to interact with the second-level cache. If no second-level cache is in use, the methods of this interface have no effect, except for contains , which returns false . Since: Jakarta Persistence (JPA) 2.0 The Shared (L2 | |
jakarta.persistence.Cacheable; it can be overridden by specifying Cacheable on a subclass. Cacheable( false ) means that the entity | |
jakarta.persistence.PersistenceUnitUtil.isLoaded(Object) whose load state is to be determined Returns: false if the entity has not been loaded, else true. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.PersistenceUnitUtil.isLoaded(Object,String) Returns: false if entity's state has not been loaded or if the attribute state has not been loaded, else true. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.PersistenceUnitUtil.isLoaded(E,Attribute) whose load state is to be determined entity - entity instance containing the attribute Returns: false |