MySQL Forums
Forum List  »  Perl

Re: perl script hangs on query with where clause
Posted by: Ryan Lowe
Date: December 06, 2008 10:26PM

How does the following work for you:

$sth = $dbh->prepare("select v2 from test where v1=?");
$sth->execute('1');
print "select with where clause hangs. You will never see this message\n";
$sth->finish;

Options: ReplyQuote




Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.