- // 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();
- // 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();
上一篇: 常见JSP中文乱码例子及其解决方法
下一篇: 如何在JSP中发送一个动态图像