Help for this page
my $sql = <<'END'; select the_data from my_table ... # this line throws my error my $data = $sth->fetchall_arrayref;
my $sql = <<'END'; select the_data from my_table ... # This line now completes successfully my $data = $sth->fetchall_arrayref;