in reply to Inserting records in MS Access
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).#connection creation goes here $dbh->do("INSERT INTO TABLE (COL1, COL2) VALUES('Val1', 'Val2')")or di +e "I failed to insert";
|
|---|