A sample insert statement would look like this:
strSQL = "insert into table_name values ('7725', 'Bob', 'Nice bloke');"
If you are only inserting into some of the columns you will need to specify the column names,
strSQL = "insert into table_name (column1, column3, column7) values ('7725'...