NAME

DBIx::Encoding - Doing encode/decode in the character code which you appointed in an attribute.

SYNOPSIS

  use DBIx::Encoding;
	
	my @dsn = (
			'dbi:mysql:host=localhost;database=mysql;mysql_socket=/tmp/mysql.sock;',
			'root',
			'',
			{
				RootClass => 'DBIx::Encoding',
				encoding => 'utf8',
			},
	);

	my $dbh = DBI->connect(@dsn) or die;

DESCRIPTION

DBIx::Encoding is encode/decode in the charset which you appointed in an attribute. but, this module does not yet support blob. I am going to support it in a future version.

AUTHOR

Tatsuro Hisamori <myfinder@cpan.org>

SEE ALSO

DBI

LICENSE

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.