- // Create a new record and insert it into the database
- TBookRecord book = create.newRecord(T_BOOK);
- book.setTitle("My first book");
- book.store();
- // Update it with new values
- book.setPublishedIn(2010);
- book.store();
- // Delete it
- book.delete();