A small patch for NoBindVars: 46c46 < while(my $bvar = shift @bind) { --- > foreach my $bvar (@bind) { Problem - the while loop bailed out on the first non-true entry, leaving bad SQL. - Alan