Marcus, you wrote:
> use DBI;
> use DBIx::Recordset;
> $dbh->do("\COPY table FROM 'file.dat'");I think you need to escape the backslash. Perl is interpreting the "\C" as plain "C", so the backslash is getting lost. You could check this out by running the following: > perl -e '$a= "\Copy"; print "$a\n";' Stph
