in reply to Inserting records in MS Access

This really has no place here but:
You can do an insert using <a href=http://search.cpan.org/search?dist=DBI">DBI and a DBD driver form (CPAN) by creating your connection like normal then
#connection creation goes here $dbh->do("INSERT INTO TABLE (COL1, COL2) VALUES('Val1', 'Val2')")or di +e "I failed to insert";
There are more short cuts but this is standard SQL and if you use the DBI module as your interface it should work. (The reason I say should is because when I started in Perl I began to use databases that could handle my scripts ie. MySQL and Oracle).

Please go and read the online documentation about DBI and DBD::ADO. There are examples of almost anything that you can do with DBI in there.

--BigJoe

Learn patience, you must.
Young PerlMonk, craves Not these things.
Use the source Luke.