ObjectDB Database Search

101-150 of 200 results

objectdb:2.8.4 - Error occurred during initialization of boot layer

:/Projects/Anritsu/Perforce/ws_alexander.golyshkin_ALL/DEV/RTD_7_6_0_JAVA_ UPDATE _JDK9/JavaApps ... .jar;D:\Projects\Anritsu\Perforce\ws_alexander.golyshkin_ALL\DEV\RTD_7_6_0_JAVA_ UPDATE _JDK9\JavaApps ... _ UPDATE _JDK9\JavaApps\CommonThirdParty\mockito\objenesis-2.1.jar;D:\Projects\Anritsu\Perforce\ws_alexander

Schema-Update: Rename superclass and remove one subclass

Schema-Update: Rename superclass and remove one subclass

jakarta.persistence.ForeignKey

: FOREIGN KEY ( {, } ... ) REFERENCES [ ( {, } ... ) ] [ ON UPDATE ] [ ON DELETE ... will generate foreign key constraints whose update and delete actions it determines most appropriate ... element is not specified, the provider will generate a constraint whose update and delete actions

jakarta.persistence.FlushModeType

TypedQuery object, the persistence provider is responsible for ensuring that all updates to the state ... this by flushing updates to those entities to the database or by some other means. On the other hand, if COMMIT is set, the effect of updates made to entities in the persistence context on queries

jakarta.persistence.Version

or timestamp fails during an attempt to update the entity, that is, if the version or timestamp held in the database changes between reading the state of an entity instance and attempting to update or ... ; This field declares a revision timestamp: @Version @Column(name = "LAST_ UPDATED ") private Instant

jakarta.persistence.Column

public String getDescription() { return description; } Example 3: @Column(name = "ORDER_COST", updatable ... Since: Jakarta Persistence (JPA) 1.0 boolean updatable (Optional) Whether the column is included in SQL UPDATE statements generated by the persistence provider. Default: true Since: Jakarta Persistence

jakarta.persistence.StoredProcedureQuery.getUpdateCount()

() Return the update count or -1 if there is no pending result or if the next result is not an update count. Returns: update count or -1 if there is no pending result or if the next result is not an update count. Throws: PersistenceException - if the query execution exceeds the query timeout value set

jakarta.persistence.StoredProcedureQuery.executeUpdate()

() Return the update count of -1 if there is no pending result or if the first result is not an update count. The provider will call execute on the query if needed. Returns: the update count or -1 if there is no pending result or if the next result is not an update count.. Throws: PersistenceException

jakarta.persistence.JoinColumn

provider. Default: true Since: Jakarta Persistence (JPA) 1.0 boolean updatable (Optional) Whether the column is included in SQL UPDATE statements generated by the persistence provider. Default: true

jakarta.persistence.MapKeyColumn

boolean updatable (Optional) Whether the column is included in SQL UPDATE statements generated by

jakarta.persistence.MapKeyJoinColumn

provider. Default: true Since: Jakarta Persistence (JPA) 1.0 boolean updatable (Optional) Whether the column is included in SQL UPDATE statements generated by the persistence provider. Default: true

jakarta.persistence.criteria.CriteriaBuilder

query object to perform a bulk update operation. Parameters: targetEntity - target type for update

jakarta.persistence.CacheStoreMode

REFRESH Insert/ update entity data held in the cache when read from the database and when written ... .0 USE Insert entity data into cache when read from database and insert/ update entity data

jakarta.persistence.EntityManager.createQuery(CriteriaUpdate)

;  CriteriaUpdate updateQuery ) Create an instance of Query for executing a criteria update query. Parameters: updateQuery - a criteria update query object Returns: the new query instance. Throws: IllegalArgumentException - if the update query is found to be invalid. Since: Jakarta Persistence (JPA) 2.1

jakarta.persistence.criteria.CriteriaUpdate.set(Path,Expression)

Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.CriteriaUpdate CriteriaUpdate set (    Path attribute ,    Expression value ) Update the value of the specified attribute. Parameters: attribute - attribute to be updated value - new value Returns: the modified update query. Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.criteria.CriteriaUpdate.set(String,Object)

(    String attributeName ,    Object value ) Update the value of the specified attribute. Parameters: attributeName - name of the attribute to be updated value - new value Returns: the modified update query. Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.criteria.CriteriaUpdate.where(Expression)

where (    Expression restriction ) Modify the update query to restrict the target of the update according to the specified boolean expression. Replaces the previously added restriction(s), if any. Parameters: restriction - a simple or compound boolean expression Returns: the modified update query. Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.criteria.CriteriaUpdate.where(Predicate...)

where (    Predicate... restrictions ) Modify the update query to restrict the target of the update according to the conjunction of the specified restriction predicates. Replaces the previously ... : the modified update query. Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.criteria.CriteriaUpdate.set(SingularAttribute,X)

(    SingularAttribute attribute ,    X value ) Update the value of the specified attribute. Parameters: attribute - attribute to be updated value - new value Returns: the modified update query. Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.criteria.CriteriaUpdate.set(SingularAttribute,Expression)

(    SingularAttribute attribute ,    Expression value ) Update the value of the specified attribute. Parameters: attribute - attribute to be updated value - new value Returns: the modified update query. Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.criteria.CriteriaUpdate.set(Path,X)

Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.CriteriaUpdate CriteriaUpdate set (    Path attribute ,    X value ) Update the value of the specified attribute. Parameters: attribute - attribute to be updated value - new value Returns: the modified update query. Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.criteria.CriteriaBuilder.createCriteriaUpdate(Class)

Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.CriteriaBuilder CriteriaUpdate createCriteriaUpdate (    Class targetEntity ) Create a CriteriaUpdate query object to perform a bulk update operation. Parameters: targetEntity - target type for update operation Returns: the query object. Since: Jakarta Persistence (JPA) 2.1

jakarta.persistence.EntityManager.createNativeQuery(String)

Jakarta Persistence (JPA) Method in jakarta.persistence.EntityManager Query createNativeQuery (    String sqlString ) Create an instance of Query for executing a native SQL statement, e.g., for update or delete. If the query is not an update or delete query, query execution will result

jakarta.persistence.criteria.CriteriaUpdate.from(Class)

Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.CriteriaUpdate Root from (    Class entityClass ) Create and add a query root corresponding to the entity that is the target of the update . A CriteriaUpdate object has a single root, the entity that is being updated

jakarta.persistence.criteria.CriteriaUpdate.from(EntityType)

Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.CriteriaUpdate Root from (    EntityType entity ) Create and add a query root corresponding to the entity that is the target of the update . A CriteriaUpdate object has a single root, the entity that is being updated

jakarta.persistence.Query.executeUpdate()

Jakarta Persistence (JPA) Method in jakarta.persistence.Query int executeUpdate() Execute an update or delete statement. Returns: the number of entities updated or deleted. Throws: IllegalStateException - if called for a Jakarta Persistence query language SELECT statement or for a criteria query

jakarta.persistence.ManyToOne

= false) @JoinColumn(name = "CUST_ID", nullable = false, updatable = false) public Customer

jakarta.persistence.Persistence

.persistence.spi.PersistenceProvider" or remove PERSISTENCE_PROVIDER field and also update TCK signature

jakarta.persistence.OneToOne

(optional = false) @JoinColumn(name = "CUSTREC_ID", unique = true, nullable = false, updatable

jakarta.persistence.PersistenceConfiguration

for validation at PreRemove . Since: Jakarta Persistence (JPA) 1.0 VALIDATION_GROUP_PRE_ UPDATE Target

jakarta.persistence.Persistence.PERSISTENCE_PROVIDER

.spi.PersistenceProvider" or remove PERSISTENCE_PROVIDER field and also update TCK signature tests. Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.CacheStoreMode.USE

Jakarta Persistence (JPA) Enum Constant in jakarta.persistence.CacheStoreMode USE Insert entity data into cache when read from database and insert/ update entity data when written to the database: this is the default behavior. Does not force refresh of already cached items when reading from database. Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.CacheStoreMode.REFRESH

Jakarta Persistence (JPA) Enum Constant in jakarta.persistence.CacheStoreMode REFRESH Insert/ update entity data held in the cache when read from the database and when written to the database. Force refresh of cache for items read from database. Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.TypedQuery.getResultStream()

language UPDATE or DELETE statement. PessimisticLockException - if pessimistic locking fails

jakarta.persistence.TypedQuery.getSingleResult()

Jakarta Persistence (JPA) Method in jakarta.persistence.TypedQuery X getSingleResult() Execute a SELECT query that returns a single result. Returns: the result, of type X . Throws: IllegalStateException - if called for a Jakarta Persistence query language UPDATE or DELETE statement

jakarta.persistence.TypedQuery.getSingleResultOrNull()

language UPDATE or DELETE statement. LockTimeoutException - if pessimistic locking fails

jakarta.persistence.TypedQuery.getResultList()

for a Jakarta Persistence query language UPDATE or DELETE statement. PessimisticLockException

jakarta.persistence.StoredProcedureQuery.getOutputParameterValue(int)

Jakarta Persistence (JPA) Method in jakarta.persistence.StoredProcedureQuery Object getOutputParameterValue (    int position ) Retrieve a value passed back from the procedure through an INOUT or OUT parameter. For portability, all results corresponding to result sets and update counts

jakarta.persistence.StoredProcedureQuery.getOutputParameterValue(String)

Jakarta Persistence (JPA) Method in jakarta.persistence.StoredProcedureQuery Object getOutputParameterValue (    String parameterName ) Retrieve a value passed back from the procedure through an INOUT or OUT parameter. For portability, all results corresponding to result sets and update

jakarta.persistence.StoredProcedureQuery.execute()

Jakarta Persistence (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. Returns: true if first

jakarta.persistence.StoredProcedureQuery.hasMoreResults()

Jakarta Persistence (JPA) Method in jakarta.persistence.StoredProcedureQuery boolean hasMoreResults() Return true if the next 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. Returns: true

jakarta.persistence.ForeignKey.value

will generate a constraint whose update and delete actions it determines most appropriate for the join column

jakarta.persistence.LockModeType.OPTIMISTIC_FORCE_INCREMENT

Jakarta Persistence (JPA) Enum Constant in jakarta.persistence.LockModeType OPTIMISTIC_FORCE_INCREMENT Optimistic lock, with version update . Since: Jakarta Persistence (JPA) 2.0

jakarta.persistence.LockModeType.PESSIMISTIC_FORCE_INCREMENT

Jakarta Persistence (JPA) Enum Constant in jakarta.persistence.LockModeType PESSIMISTIC_FORCE_INCREMENT Pessimistic write lock, with version update . Since: Jakarta Persistence (JPA) 2.0

jakarta.persistence.EntityManager.merge(T)

Jakarta Persistence (JPA) Method in jakarta.persistence.EntityManager T merge (    T entity ) Merge the state of the given new or detached entity instance into the current persistence context, resulting in, respectively, an insert or possible update when the persistence context

jakarta.persistence.Query.getSingleResultOrNull()

Jakarta Persistence (JPA) Method in jakarta.persistence.Query Object getSingleResultOrNull() Execute a SELECT query that returns a single untyped result. Returns: the result, or null if there is no result. Throws: IllegalStateException - if called for a Jakarta Persistence query language UPDATE or

jakarta.persistence.Query.getResultList()

query language UPDATE or DELETE statement. PessimisticLockException - if pessimistic locking fails

jakarta.persistence.Query.getResultStream()

if there are no results. Throws: IllegalStateException - if called for a Jakarta Persistence query language UPDATE or

jakarta.persistence.Query.getSingleResult()

Jakarta Persistence (JPA) Method in jakarta.persistence.Query Object getSingleResult() Execute a SELECT query that returns a single untyped result. Returns: the result. Throws: IllegalStateException - if called for a Jakarta Persistence query language UPDATE or DELETE statement

Explorer bug ? Objects seem to be missing from database in Class view, but are present as references

to elementId(1) INFO: RequestBean []: Updated : com.greensoft.entity.Project [1](TEST: project 1) INFO ... ) to elementId(7) INFO: RequestBean []: Updated : com.greensoft.entity.Block [7](TEST: constrained block1, in 1st project) INFO: RequestBean []: Updated : com.greensoft.entity.Constraint [8](TEST: a 1st