Summary
You can use class RWDBInserter to insert data into database tables. There are three basic approaches:
*To insert data selected from other tables in the same database, provide the inserter with a selector.
*To insert data from outside the database, provide the inserter with a reader.
*To insert data from your program, use the insertion operator for each data item.
An inserter's execute() method returns an RWDBResult, which can be safely ignored. Using explicit connections for the execute() method is recommended, to avoid opening unnecessary multiple connections.