To insert a record, you can use an Insert query
Insert into tablename (fieldname1, fieldname2, fieldname3)
values (value1, value2, value3).
You can run this from a RunSQL macro as well if you wish, or write it as code.
You don't have to include every field there - only mandatory ones (eg primary keys and those with the Required flag set to true).
John