ObjectDB Database Search
101-150 of 200 resultsException after update of indices of Entity classException after update of indices of Entity class | |
Best practice: Database update/migration of embedded databases in productsBest practice: Database update/migration of embedded databases in products | |
A few entities loss after update to 2.3.7_08!A few entities loss after update to 2.3.7_08! | |
Eclipse plugin problem (using ObjectDB as a separate bundle)" button. Finally click Run (first button on last row) For the "Groovy" plugin (see update site ... /rcptoolbox (if this does NOT open use the attachement below) Update sites : http://download ... , if the first URL (NOT an update site ) does not work simply drop the attached com.richclientgui | |
Licensing). Following your post the site license description was updated to reflect this. Small companies ... have to purchase a new server license? I know that there is a site license but we are only two developers. A site license would be 3 times more expensive than two server licenses. Our production | |
ObjectDB current status of the BIRT plugin Just now I downloaded Eclipse Kepler Reporting. First step was to add the update site ... . Unfortunately Eclipse gave me an error not being able to contact the software update site . My questions: - Is there a mistake in the tutorial or is the software update site (temporarily) not available | |
Installing a VM security fix leads to inactive DB we have to create new keys for all of them. We sometimes have to create new keys if we update to a newer ... of license keys for a site license is not ideal to say the least. There has to be a better way ... of your device change) please provide more details. support Support We have a site license | |
Optimization Question to identify exactly what fields have changed from one update to the next. Currently the following sequence executes when a track update comes in: - If it’s a new track simply add it to the database. - If it's an update to an existing track, delete the entire previous entry and then add in the new | |
Activation Issue Hi, We bought a site license the yesterday. I ran the activation class this morning ... the activation key in objectdb.conf). I tried upgrading to 2.3.7_02 and updating objectdb.conf ... code is per machine. Use your site license to generate multiple activation codes. You may also specify | |
Schema-Update: Rename superclass and remove one subclassSchema-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 | |
BIRT Driver Improvements tutorial (if you use Eclipse 3.7 you will have to specify the following update site - http://download.eclipse.org/birt/ update - site /3.7). The driver (as 2 Eclipse bundles) is also attached ... Alexander Adam The BIRT driver has been updated and now it can work on Eclipse 3.7. In addition | |
ObjectDB 2 JDO Manual to see the updated web page and the support for JPA when I returned to your site today. However, it is difficult ... you can provide me with (other than on your site , which I've gone over fairly thoroughly ... you can provide me with (other than on your site , which I've gone over fairly thoroughly | |
Out of Memory - Slow leak? opened up to the ftp site you sent through before - once this is done life will be much easier. felixobjectdb Richard Szurgot The heap dumps have now been uploaded to the objectdb ftp site . Files ... . support Support Thanks for the update . I'll let you know if/when we get the exception and/or | |
[ObjectDB 2.8.3_01] Unexpected exception (Error 990)) at common.model. Site .getActiveSessions( Site .groovy:25) at common.app.Transactor.execute(Transactor.groovy ... more dmoshal David Moshal Similar stack traces are usually related to partial enhancement or update | |
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 |