Skip to content

Instantly share code, notes, and snippets.

@myfinder
Created December 14, 2009 12:53
Show Gist options
  • Save myfinder/256030 to your computer and use it in GitHub Desktop.
Save myfinder/256030 to your computer and use it in GitHub Desktop.
sub bind_param {
my ($self, @args) = @_;
my $encoding = $self->{private_dbix_encoding}->{encoding};
$args[1] = Encode::encode($encoding, $args[1]);
return $self->SUPER::bind_param(@args);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment