in reply to Re^2: DBD::DB2::st execute failed: Bind failed
in thread DBD::DB2::st execute failed: Bind failed
my $sth = $self->{sth_get}; $sth->bind_param(1, $session_id) or die "Bind failure:" . $sth->errstr +; $sth->execute() or die "Execute failure:" . $sth->errstr;
I'm also a little curious why the binding failure dies in the DBD code as opposed to bubbling up to the user as a simple execute failure. Not so curious as to go source diving, but still...
|
|---|