7 Same idea as CXGN::DB::Sandbox, except you might want to run a script
8 explicitly on the production database.
12 Christopher Carpita <csc32@cornell.edu>
16 package CXGN
::DB
::Production
;
18 use base qw
/CXGN::DB::Connection/;
22 my $custom_args = shift;
27 dbbranch
=> "production",
28 dbargs
=> { RaiseError
=>0, AutoCommit
=>1, PrintError
=>0 }
30 while(my($key, $value) = each %$custom_args){
31 $db_args->{$key} = $value;
33 my $self = $class->SUPER::new
($db_args);