|
Acme::BeyondPerl::ToSQL::mysql - MySQL support for Acme::BeyondPerl::ToSQL |
Acme::BeyondPerl::ToSQL::mysql - MySQL support for Acme::BeyondPerl::ToSQL
my $dbname; my $host; my $user; my $pass;
BEGIN{
$dbname = 'acme_db';
$host = '127.0.0.1';
$user = 'foo';
$pass = 'bar';
}
use Acme::BeyondPerl::ToSQL ("dbi:mysql:dbname=$dbname;host=$host", $user, $pass);
# or
use Acme::BeyondPerl::ToSQL ({
dbi => ["dbi:mysql:dbname=$dbname;host=$host", $user, $pass],
debug => 1
});
This module implements a MySQL version for Acme::BeyondPerl::ToSQL. You don't need to use this module directly.
the Acme::BeyondPerl::ToSQL manpage,
PostgreSQL
Makamaka Hannyaharamitu, <makamaka[at]cpan.org>
Copyright 2005 by Makamaka Hannyaharamitu
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
|
Acme::BeyondPerl::ToSQL::mysql - MySQL support for Acme::BeyondPerl::ToSQL |