NAME
DBI::Gofer::Transport::psgi - server side http transport for DBI-Gofer using PSGI
SYNOPSIS
use Plack::App::DBI::Gofer;
my $app = Plack::App::DBI::Gofer->new( config => {
%DBI_Gofer_Execute_config_params
})->to_app;
# or map a path to a forced dsn
use Plack::Builder;
builder {
mount '/mydb' => Plack::App::DBI::Gofer->new( config => {
forced_connect_dsn => 'dbi:SQLite:dbname=mydb.db',
})->to_app;
};
For a corresponding client-side transport see DBD::Gofer::Transport::http.
DESCRIPTION
See Plack::App:DBI::Gofer for details
Please report any bugs or feature requests to bug-plack-app-dbi-gofer@rt.cpan.org
, or through the web interface at http://rt.cpan.org.
AUTHOR
Tim Bunce, http://www.linkedin.com/in/timbunce
James Wright https://metacpan.org/author/JWRIGHT
LICENCE AND COPYRIGHT
Copyright (c) 2007, Tim Bunce, Ireland. All rights reserved.
Copyright (c) 2018, James Wright, United States.
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic.