X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=ex%2FBeerDB.pm;h=6d90b2eb7828f1c1566a1f25f3bfa443414a5d32;hb=2d1409f7dd94e2292690eb03d7d62e464c1714db;hp=1e84b36147f4b5f5e7ad2192220435f5d94296e5;hpb=9def4d1b9f2f3dd6d2f0f789610954209b133703;p=maypole.git diff --git a/ex/BeerDB.pm b/ex/BeerDB.pm index 1e84b36..6d90b2e 100644 --- a/ex/BeerDB.pm +++ b/ex/BeerDB.pm @@ -3,11 +3,23 @@ use Maypole::Application; use Class::DBI::Loader::Relationship; sub debug { $ENV{BEERDB_DEBUG} } +# This is the sample application. Change this to the path to your +# database. (or use mysql or something) +use constant DBI_DRIVER => 'SQLite'; +use constant DATASOURCE => 't/beerdb.db'; BEGIN { -# 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"); + 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" and $dbi_driver = 'SQLite2'; + } + } + BeerDB->setup(join ':', "dbi", $dbi_driver, DATASOURCE); } # Give it a name. @@ -15,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(