table has an insert()
method, which takes one value, of the table's
value type, as its argument, and adds that value to the table. It's a
wrapper for SQL's INSERT.
points.insert({1.4f, -5.6f});
table::insert()
returns void.
serial_table also has
an insert()
method, which differs as follows:
serial,
and it returns the DBMS-assigned key.