in reply to Querying an existing sqlite DB on a remote machine

Try DBD::Proxy or DBD::Gofer

Update: From the description:

DBD::Proxy is a Perl module for connecting to a database via a remote DBI driver. See DBD::Gofer for an alternative with different trade-offs.

This is of course not needed for DBI drivers which already support connecting to a remote database, but there are engines which don't offer network connectivity.

  • Comment on Re: Querying an existing sqlite DB on a remote machine

Replies are listed 'Best First'.
Re^2: Querying an existing sqlite DB on a remote machine
by perrin (Chancellor) on Jan 28, 2010 at 17:53 UTC
    Agreed, DBD::Gofer is a good solution for this problem.