There must be an easier way to add many controls to a database.

I have a form with 20 textboxes. I now want to write all these textboxes.text to fields in a database - the way I do it now is....

insert into table values ('" & txtbox.text & "','" & txtbox.text & "','" & txtbox.text & "','" & txtbox.text & "'
,'" & txtbox.text & "'......)


Isn't there an easier/quicker way??

Any suggestions please,

SS