X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=ex%2FBeerDB.pm;h=e276830c4e10d18620783e10cecb6b937a9cc634;hb=8617321ebf13ce6b63d41a65a003d153f2b5cc5e;hp=26f8e94cd249197ff919a9746120421e09245235;hpb=8f6d0577a304bb99d072c9eaf707ab278927bb09;p=maypole.git diff --git a/ex/BeerDB.pm b/ex/BeerDB.pm index 26f8e94..e276830 100644 --- a/ex/BeerDB.pm +++ b/ex/BeerDB.pm @@ -2,10 +2,24 @@ package BeerDB; use Maypole::Application; use Class::DBI::Loader::Relationship; -BEGIN { -# This is the sample application. Change this to the path to your +sub debug { $ENV{BEERDB_DEBUG} } +# This is the sample application. Change this to the path to your # database. (or use mysql or something) -BeerDB->setup("dbi:SQLite:t/beerdb.db"); +use constant DBI_DRIVER => 'SQLite'; +use constant DATASOURCE => 't/beerdb.db'; + +BEGIN { + my $dbi_driver = DBI_DRIVER; + if ($dbi_driver =~ /^SQLite/) { + die sprintf "SQLite datasource '%s' not found, correct the path or " + . "recreate the database by running Makefile.PL", DATASOURCE + unless -e DATASOURCE; + eval "require DBD::SQLite"; + if ($@) { + eval "require DBD::SQLite2" && dbi_driver = 'SQLite2'; + } + } + BeerDB->setup(join ':', "dbi", $dbi_driver, DATASOURCE); } # Give it a name. @@ -13,12 +27,12 @@ BeerDB->config->application_name('The Beer Database'); # Change this to the root of the web space. BeerDB->config->uri_base("http://localhost/beerdb/"); -#BeerDB->config->{uri_base} = "http://neo.trinity-house.org.uk/beerdb/"; +#BeerDB->config->uri_base("http://neo.trinity-house.org.uk/beerdb/"); BeerDB->config->rows_per_page(10); # Handpumps should not show up. -BeerDB->config->{display_tables} = [qw[beer brewery pub style]]; +BeerDB->config->display_tables([qw[beer brewery pub style]]); BeerDB::Brewery->untaint_columns( printable => [qw/name notes url/] ); BeerDB::Style->untaint_columns( printable => [qw/name notes/] ); BeerDB::Beer->untaint_columns( @@ -31,11 +45,7 @@ BeerDB->config->{loader}->relationship($_) for ( "a style defines beers", "a pub has beers on handpumps"); -#package BeerDB::Beer; -#our %remember; -#sub MODIFY_CODE_ATTRIBUTES { $remember{ $_[1] } = $_[2]; () } -#sub FETCH_CODE_ATTRIBUTES { $remember{ $_[1] } } - +# For testing classmetadata sub BeerDB::Beer::classdata :Exported {}; sub BeerDB::Beer::list_columns { return qw/score name price style brewery url/};