On Wed, May 31, 2006 at 08:57:23PM -0700, Don Mies wrote:
> Tim, et. al.  Following is a small sample program that demonstrates my 
> problem:
> 
>    my $stmtHandle = $dbHandle->prepare ( $insert );
> 
>    $dbHandle->{AutoCommit} = 0;
>    $dbHandle->{PrintError} = 0;
>    $dbHandle->{RaiseError} = 1;

You're altering the parent handle attributes after you've created a
child handle. The changes won't affect the child. See the DBI docs.

Tim.

Reply via email to