I would like to add more than one record, per form, to a field in a Access datbase. Can it be done, and if so, what am I leaving out.
This is what I've got now:
<CFQUERY NAME="multiple_entry" DATASOURCE="Test_Stuff">
INSERT INTO multiple_entries_same_field (item_one, item_one)
VALUES('#item_one#', '#item_one#')
</CFQUERY>
Thanks
This is what I've got now:
<CFQUERY NAME="multiple_entry" DATASOURCE="Test_Stuff">
INSERT INTO multiple_entries_same_field (item_one, item_one)
VALUES('#item_one#', '#item_one#')
</CFQUERY>
Thanks