View Single Post
  #2 (permalink)  
Old 05-26-2006, 04:34 AM
irfanhab irfanhab is offline
Junior Member
 
Join Date: May 2006
Posts: 10
irfanhab is on a distinguished road
Default SQL 92 answer. Re: How do I insert multiple new records from a web form field into an MS Access database?

You could make use of SQL scripts, something like:

Code:
insert into tablename values(....);
insert into tablename values(....);
insert into tablename values(....);
insert into tablename values(....);
and so on
Reply With Quote