![]() |
![]()
| ![]() |
![]()
NAMEData::Model::Driver::DBI::MasterSlave - master-slave composition for mysql SYNOPSISpackage MyDB; use base 'Data::Model'; use Data::Model::Schema; use Data::Model::Driver::DBI::MasterSlave; my $dbi_connect_options = {}; my $driver = Data::Model::Driver::DBI::MasterSlave->new( master => { dsn => 'dbi:mysql:host=master.server:database=test', username => 'master', password => 'master', connect_options => $dbi_connect_options, }, slave => { dsn => 'dbi:mysql:host=slave.server:database=test', username => 'slave', password => 'slave', connect_options => $dbi_connect_options, }, ); base_driver $driver; install_model model_name => schema { .... }; DESCRIPTIONIt can use with standard master-slave composition. SEE ALSODBI, Data::Model::Driver::DBI, Data::Model AUTHORKazuhiro Osawa <yappo <at> shibuya <döt> pl> LICENSEThis library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. POD ERRORSHey! The above document had some coding errors, which are explained below:
|