Search notes:

Perl module DBD::SQLite - determine SQLite version

The version of the currently running SQLite library can be determined with sqlite_version.
#!/usr/bin/perl
use warnings;
use strict;
use DBI;

my $dbh = DBI->connect("dbi:SQLite:dbname=:memory:") or die "Could not conect to memory database";

printf "sqlite version is %s\n", $dbh->{sqlite_version};
Github repository PerlModules, path: /DBD/SQLite/sqlite_version.pl

See also

sqlite_version()
DBD::SQLite

Index