| SQL - Questions and Answers Have a SQL question? Post it here. First do a search to see if someone hasn't already answered it. |
|
||||||
![]() |
|
|
LinkBack | Thread Tools | Search this Thread |
|
|||
How do I insert multiple new records from a web form field into an MS Access database?The way I have things setup right now I can only insert one new record at a time to the database when I would like to be able to input 10 records or so at a time before I add each one.
|
|
|||
|
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 |