Reference to the Database, provided by rorm_db_connect.
Mutable pointer to a transaction, can be null.
Name of the table to insert into.
Array of columns, corresponding to row values to insert into the database.
List of values to insert, indexes matching the columns parameter.
Callback to call when finished, only passing in error information.
context pointer to pass through as-is into the callback.
**Important**: - Make sure that db, model and condition are allocated until the callback is executed.
This function is called from an asynchronous context.
This function inserts one row (rorm_db_insert) or multiple rows (rorm_db_inset_bulk) into the given the database with the given values.