Hello, I hope I am addressing this question to a correct email.
I am trying to make multiple prepare statements on one database connection, however I am getting errors. I would just like to know if this is possible. The logic goes something like: my $DBH = DBI->connect(); my $sth = $DBH->prepare( SELECT ...); my $rv = $sth->execute(); my $sth2 = $DBH->prepare( SELECT ...); my $rv2 = $sth2->execute(); Thank you in advance.