in reply to How should I tell DBD::SQLite to use a newer binary?

From DBD::SQLite itself:
DBD::SQLite is a Perl DBI driver for SQLite, that includes the entire thing in the distribution.
This means it uses its own binary library. I see that the repository contains an updated version of sqlite3, but DBD::SQLite (the distribution) seemingly doesn't (yet). If all else fails, download the tarball, replace the sqlite3 files there, and (re)install manually.
  • Comment on Re: How should I tell DBD::SQLite to use a newer binary?

Replies are listed 'Best First'.
Re^2: How should I tell DBD::SQLite to use a newer binary?
by Cody Fendant (Hermit) on Jan 03, 2024 at 20:08 UTC

    Thanks!