"Wayne Gibson" <(E-Mail Removed)> wrote in message
news:dm1sjm$prs$1$(E-Mail Removed)...
> Hi,
> Was wondering if anybody could help.
>
> I'm looking to add a lots of records to an access database, but it looks
> like I'm going to have to insert them one at a time!!!
> Looks like I'm going to have to do this for each new record..
>
> Insert into Database(<fields>) VALUES(<values>)
>
> Was wondering if there was anything similar to the MySQL Implementation
> where I can add several new rows in one SQL command.
>
You still need to do it one record a time, but you could use an Access
Stored Proc as shown in the article at
http://www.devcity.net/Articles/18/msaccess_sp.aspx
The only real advantage would be in not having to send the <fields> list
over each time.