ObjectDB Database Search

51-100 of 200 results

Remove not working

the second time. I did not think this would be required because I had PersistenceManager.ignoreCache= false ... with invoking flush , if there are changes and ignoreCache is false . A for-each loop is actually ... should be FALSE ."); System.out.format("Test complete.%n"); } private static void openDatabase

General Performance Issues Illustrated with a Specific Method

.person.phone1, " + "c.person.address " + ") " + " from Client c " + " where c.retired= false ... .retired= false and ( lower(c.phn)=:q or lower(c.person.localReferanceNo)=:q or lower(c.person.ssNumber ... .address ) from Client c where c.retired= false and ( lower(c.phn)=:q or lower(c.person

Type ... is not defined as an entity (@Entity is missing) (error 302)

Boolean candS = false Boolean gramStain = false Boolean fungal = false OtherRqst commonOtherRqsts = new OtherRqst() // Bacteria (Fastidious) Boolean afb = false Boolean bPertussis = false Boolean hPylori = false OtherRqst bacteriaOtherRqsts = new OtherRqst() // Fungal (Specific) Boolean blastomycosis

openejb jpa jaas module

.getPassword(); if(password.equals(pass)) { succeeded = true; return true; } else { succeeded = false ; return false ; } } } catch (Exception e) { e.printStackTrace(); //To change body of catch statement use ... | File Templates. succeeded = false ; return false ; } return false ; //To change body of implemented

How to avoid NULL values on Embedded entities

private Cliente cliente; //Opcional         @Basic(optional= false ... ;  @Basic(optional= false ) private String calle;     @Basic(optional= false ) private int numero;     @Basic(optional= false ) private String ciudad;    

New to Product & Having An Issue

() == null || this.domainId == null) return false ; return this.domainId.equals(obj); } } package test ... ; this.objectId = objectId; } public DomainId() { super(); } @Basic(optional= false ) public String ... = accountId; } @Basic(optional= false ) public String getObjectId() { return objectId; } public void setObjectId

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

because the default behaviour is " false "] About Build 2.6.9_02 and the "objectdb.temp ... ; - System.setProperty("objectdb.temp.no-enhancement-crc-check", " false "); - EnumValue ... ("objectdb.temp.no-enhancement-crc-check", " false "); - Methods in EnumValue and BooleanValue defined as

Date field Index is corrupted due to time change

;      return false ;           ... ) {                 return false ... ; @Basic(optional = false )         @Temporal(TemporalType.TIMESTAMP

Help with JPA2 Criteria and conditional operator grouping

.companyId=:p1) AND ($1.conditionOne=true)) AND (($1.conditionTwo= false ) OR ($1.conditionThree= false ... (conditionTwoPath, false ),             builder.equal(conditionThreePath, false )             

Wrong data stored in time only fields

;            return false ;     ... ;     return false ;            ... ;       @Basic(optional = false )       

Error 363 - Failed to read value of inverse relationship

.AUTO) private long id; @ManyToOne(optional= false ) private ETown town; public ETown getTown ... id; private int permission = 0, activePermission = 0; private boolean validated = false , avatarEnabled = true; @Column(nullable = false ) private String playerName, password, email; @Temporal

AnnotationAttrRef jakarta.persistence.MapKeyColumn.unique

JPA Annotation Attribute in jakarta.persistence.MapKeyColumn boolean unique default false (Optional) Whether the column is a unique key. This is a shortcut for the UniqueConstraint annotation at the table level and is useful for when the unique key constraint corresponds to only a single column

AnnotationRef jakarta.persistence.Cacheable

on a subclass. Cacheable( false ) means that the entity and its state must not be cached by the provider

AnnotationRef jakarta.persistence.ManyToOne

is optional. If set to false then a non-null relationship must always exist. May be used in schema

InterfaceRef jakarta.persistence.AttributeConverter

annotation may be used to apply a converter which is declared autoApply= false , to explicitly plain

PersistenceUnitUtil.isInstance(entity,entityClass) - JPA Method

false otherwise. This method may, but is not required to, load the given entity by side effect

PersistenceUnitUtil.isLoaded(entity,attribute) - JPA Method

containing the attribute attribute - attribute whose load state is to be determined Return: false if entity's

AnnotationRef jakarta.persistence.Column

default false (Optional) Whether the column is a unique key. This is a shortcut for the UniqueConstraint

AbstractQuery.distinct(distinct) - JPA Method

JPA Method in jakarta.persistence.criteria.AbstractQuery AbstractQuery distinct (   boolean distinct ) Specify whether duplicate query results are eliminated. A true value will cause duplicates to be eliminated. A false value will cause duplicates to be retained. If distinct has not

StoredProcedureQuery.execute() - JPA Method

JPA Method in jakarta.persistence.StoredProcedureQuery boolean execute () Return true if the first result corresponds to a result set, and false if it is an update count or if there are no results other than through INOUT and OUT parameters, if any. Return: true if first result corresponds

AnnotationAttrRef jakarta.persistence.Column.unique

JPA Annotation Attribute in jakarta.persistence.Column boolean unique default false (Optional) Whether the column is a unique key. This is a shortcut for the UniqueConstraint annotation at the table level and is useful for when the unique key constraint corresponds to only a single column

InterfaceRef jakarta.persistence.spi.PersistenceProvider

was generated, otherwise false Throws: PersistenceException - if insufficient or inconsistent

CriteriaBuilder.isMember(elem,collection) - JPA Method

JPA Method in jakarta.persistence.criteria.CriteriaBuilder Predicate isMember (   E elem,     Expression  collection ) Create a predicate that tests whether an element is a member of a collection. If the collection is empty, the predicate will be false

CriteriaBuilder.isMember(elem,collection) - JPA Method

JPA Method in jakarta.persistence.criteria.CriteriaBuilder Predicate isMember (    Expression  elem,     Expression  collection ) Create a predicate that tests whether an element is a member of a collection. If the collection is empty, the predicate will be false

InterfaceRef jakarta.persistence.criteria.AbstractQuery

. A false value will cause duplicates to be retained. If distinct has not been specified, duplicate

AnnotationAttrRef jakarta.persistence.Converter.autoApply

JPA Annotation Attribute in jakarta.persistence.Converter boolean autoApply default false Specifies whether the annotated converter should be automatically applied to attributes of the target type. Since: JPA 2.1

EntityTransaction.getRollbackOnly() - JPA Method

JPA Method in jakarta.persistence.EntityTransaction boolean getRollbackOnly () Determine whether the current resource transaction has been marked for rollback. Return: boolean indicating whether the transaction has been marked for rollback Throws: IllegalStateException - if {@link #isActive()} is false Since: JPA 1.0

EntityTransaction.setRollbackOnly() - JPA Method

JPA Method in jakarta.persistence.EntityTransaction void setRollbackOnly () Mark the current resource transaction so that the only possible outcome of the transaction is for the transaction to be rolled back. Throws: IllegalStateException - if {@link #isActive()} is false Since: JPA 1.0

CriteriaBuilder.or(restrictions) - JPA Method

JPA Method in jakarta.persistence.criteria.CriteriaBuilder Predicate or (   Predicate... restrictions ) Create a disjunction of the given restriction predicates. A disjunction of zero predicates is false . Parameters: restrictions - zero or more restriction predicates Return: or predicate Since: JPA 2.0

AnnotationAttrRef jakarta.persistence.Convert.disableConversion

JPA Annotation Attribute in jakarta.persistence.Convert boolean disableConversion default false Disables an plain or inherited converter. If disableConversion = true , the converter element should not be specified. Since: JPA 2.1

CriteriaBuilder.isFalse(x) - JPA Method

JPA Method in jakarta.persistence.criteria.CriteriaBuilder Predicate isFalse (    Expression  x ) Create a predicate testing for a false value. Parameters: x - expression to be tested Return: predicate Since: JPA 2.0

CriteriaBuilder.disjunction() - JPA Method

JPA Method in jakarta.persistence.criteria.CriteriaBuilder Predicate disjunction () Create a disjunction (with zero disjuncts). A disjunction with zero disjuncts is false . Return: or predicate Since: JPA 2.0

AnnotationAttrRef jakarta.persistence.JoinColumn.unique

JPA Annotation Attribute in jakarta.persistence.JoinColumn boolean unique default false (Optional) Whether the property is a unique key. This is a shortcut for the UniqueConstraint annotation at the table level and is useful for when the unique key constraint is only a single field. It is not

PersistenceProvider.generateSchema(persistenceUnitName,map) - JPA Method

, otherwise false Throws: PersistenceException - if insufficient or inconsistent configuration information

AnnotationRef jakarta.persistence.NamedEntityGraph

includeAllAttributes default false (Optional) Includes all of the attributes of the annotated entity class

InterfaceRef jakarta.persistence.Cache

JPA Interface 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: JPA 2.0 The Shared (L2) Entity Cache article explains how to use Cache . Public Methods

InterfaceRef jakarta.persistence.metamodel.IdentifiableType

id attribute. Returns true for a simple id or embedded id; returns false for an idclass. Return

AnnotationAttrRef jakarta.persistence.NamedEntityGraph.includeAllAttributes

JPA Annotation Attribute in jakarta.persistence.NamedEntityGraph boolean includeAllAttributes default false (Optional) Includes all of the attributes of the annotated entity class as attribute nodes in the NamedEntityGraph without the need to explicitly list them. Included attributes

InterfaceRef jakarta.persistence.metamodel.EntityType

for a simple id or embedded id; returns false for an idclass. Return: boolean indicating

IdentifiableType.hasSingleIdAttribute() - JPA Method

JPA Method in jakarta.persistence.metamodel.IdentifiableType boolean hasSingleIdAttribute () Whether the identifiable type has a single id attribute. Returns true for a simple id or embedded id; returns false for an idclass. Return: boolean indicating whether the identifiable type has a single id attribute Since: JPA 2.0

EntityManager.isJoinedToTransaction() - JPA Method

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. Return: boolean Since: JPA 2.1

AnnotationRef jakarta.persistence.JoinColumn

default false (Optional) Whether the property is a unique key. This is a shortcut

AnnotationRef jakarta.persistence.Index

. Since: JPA 3.2 boolean unique default false (Optional) Whether the index is unique. Since: JPA 2.1

EntityManager.close() - JPA Method

, except for () , () , and () (which returns false ). If this method is called when the entity

InterfaceRef jakarta.persistence.criteria.Subquery

results are eliminated. A true value will cause duplicates to be eliminated. A false value will cause

AnnotationAttrRef jakarta.persistence.Index.unique

JPA Annotation Attribute in jakarta.persistence.Index boolean unique default false (Optional) Whether the index is unique. Since: JPA 2.1

CriteriaQuery.distinct(distinct) - JPA Method

JPA Method in jakarta.persistence.criteria.CriteriaQuery CriteriaQuery distinct (   boolean distinct ) Specify whether duplicate query results are eliminated. A true value will cause duplicates to be eliminated. A false value will cause duplicates to be retained. If distinct has not

InterfaceRef jakarta.persistence.criteria.CriteriaQuery

. A false value will cause duplicates to be retained. If distinct has not been specified, duplicate

objectdb-2.6.9_06: Extended Persistence Context fails: 'Attempt to begin a new transaction when a transaction is active'

in NetBeans8.1 and then: Set DO_FORCE_COMMIT_AFTER_BUILD = false in com.greensoft.objectdb ... DO_FORCE_COMMIT_AFTER_BUILD = false in com.greensoft.objectdb.test.mini.ejb.ExtProjectBuilder ! Then Clean ... by ObjectDB. * * Disable (set ' false ) to provoke an error due to the transaction not ending

boolean field flips after schema update (in class) of another field

We have added a boolean field to a class with default value false . After deployment ... application = null ; @Embeddable public static class Application { private boolean instruction = false ; private boolean registration = false ; private boolean profile = false ; private boolean test = false