 333 | New entity objects can be stored in the database either explicitly by invoking the persist method or implicitly as a result of a cascade operation. Explicit Persist The following code stores ... and changes its state to Managed. The new entity object is stored in the database when the transaction |
 81 | it to store, retrieve, update and delete database objects. Storing New Entity Objects The following code fragment stores 1,000 Pointobjects in the database:
em.getTransaction().begin();
for (int i ... .getTransaction().commit();
Operations that modify the content of the database (such as storing new objects |
 73 | Static Field javax.jdo.listener.InstanceLifecycleEvent int STORE Since: JDO 2.0 |
 55 | Explains how to store, retrieve, update and delete entity objects using JPA. |
 55 | Explains how to use JPA for CRUD database operations (persist, retrieve, update, remove). |
 39 | that do not participate in persistence and their values are never stored in the database (similar ... only transient (non persistent) entity fields with no real content to be stored in the database. Persistent ... otherwise (e.g. by using the @Transient annotation). Storing an entity object in the database does not |
 37 | The term persistable types refers to data types that can be used in storing data in the database ... can be stored in the database directly. Other persistable types can be embedded in entity classes as fields. In addition, only instances of entity classes preserve identity and are stored |
 27 | & requirements of the users, the website and website owners. Furthermore the way this website processes, stores ... that track, save and store information about the user's interactions and usage of the website. This allows ... , but will not store, save or collect personal information. You can read Google's privacy policy |
 27 | Every entity object that is stored in the database has a primary key. Once assigned, the primary ... of other persistable types are always stored as part of their containing entity objects and do not ... 64 bit number (long) that is set automatically by ObjectDB for every new entity object that is stored |
 26 | How to store and compare date up to sec? By default it stores the dates like "23 May, 2020 10:25:23:112 AM" means date and timestamp including milisec but I want to store till sec("23 May, 2020 10:25:23 AM") like MySql and other db. They stores the date up to sec. ObjectDB stores date values |