in reply to Re^2: $hour_insert_sth->execute showing error
in thread $hour_insert_sth->execute showing error

I expect you would have seen it written like this

my $sql = "insert into esme_hourly_master values (?,?,?,?,?,?,?,?,?,now(),?"; my $hour_insert_sth = $hour_master_db->prepare($sql);
poj

Replies are listed 'Best First'.
Re^4: $hour_insert_sth->execute showing error
by ravi45722 (Pilgrim) on Nov 04, 2015 at 11:06 UTC
    my $sql = "insert into esme_hourly_master values (?,?,?,?,?,?,?,?,?,now(),?";

    U misses the ')' to close the values. Or it's like that only