How to Install and Uninstall perl-DBD-SQLite Package on openSUSE Leap

Last updated: May 18,2024

1. Install "perl-DBD-SQLite" package

This is a short guide on how to install perl-DBD-SQLite on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install perl-DBD-SQLite

2. Uninstall "perl-DBD-SQLite" package

Learn how to uninstall perl-DBD-SQLite on openSUSE Leap:

$ sudo zypper remove perl-DBD-SQLite

3. Information about the perl-DBD-SQLite package on openSUSE Leap

Information for package perl-DBD-SQLite:
----------------------------------------
Repository : Main Repository
Name : perl-DBD-SQLite
Version : 1.66-150300.3.6.1
Arch : x86_64
Vendor : SUSE LLC
Installed Size : 8.9 MiB
Installed : No
Status : not installed
Source package : perl-DBD-SQLite-1.66-150300.3.6.1.src
Upstream URL : http://search.cpan.org/dist/DBD-SQLite/
Summary : Self-contained RDBMS in a DBI Driver
Description :
SQLite is a public domain file-based relational database engine that you
can find at the https://www.sqlite.org/ manpage.
*DBD::SQLite* is a Perl DBI driver for SQLite, that includes the entire
thing in the distribution. So in order to get a fast transaction capable
RDBMS working for your perl project you simply have to install this module,
and *nothing* else.
SQLite supports the following features:
* Implements a large subset of SQL92
See the https://www.sqlite.org/lang.html manpage for details.
* A complete DB in a single disk file
Everything for your database is stored in a single disk file, making it
easier to move things around than with the DBD::CSV manpage.
* Atomic commit and rollback
Yes, *DBD::SQLite* is small and light, but it supports full transactions!
* Extensible
User-defined aggregate or regular functions can be registered with the
SQL parser.
There's lots more to it, so please refer to the docs on the SQLite web
page, listed above, for SQL details. Also refer to the DBI manpage for
details on how to use DBI itself. The API works like every DBI module does.
However, currently many statement attributes are not implemented or are
limited by the typeless nature of the SQLite database.