in reply to Thanks, but it does not work.
in thread How to insert more than one column into Access database table?

You need to quote non-numeric values when using SQL that way. Better would be to use placeholders:
my $sth = $dbh->prepare("insert into t_table (id, folder, webpage) values (?,?,? +)"); $sth->execute($id, $folder, $webpage);
Update:Oops. /me notices you are using Win32::ODBC. Ignore the above code then, unless you switch to DBI. You still need to put quotes around any non-numeric values though...