How to Install and Uninstall perl-DBI Package on openSuSE Tumbleweed

Last updated: May 18,2024

1. Install "perl-DBI" package

This guide let you learn how to install perl-DBI on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-DBI

2. Uninstall "perl-DBI" package

Learn how to uninstall perl-DBI on openSuSE Tumbleweed:

$ sudo zypper remove perl-DBI

3. Information about the perl-DBI package on openSuSE Tumbleweed

Information for package perl-DBI:
---------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-DBI
Version : 1.643-3.1
Arch : x86_64
Vendor : openSUSE
Installed Size : 2.1 MiB
Installed : No
Status : not installed
Source package : perl-DBI-1.643-3.1.src
Upstream URL : https://metacpan.org/release/DBI
Summary : Database independent interface for Perl
Description :
The DBI is a database access module for the Perl programming language. It
defines a set of methods, variables, and conventions that provide a
consistent database interface, independent of the actual database being
used.
It is important to remember that the DBI is just an interface. The DBI is a
layer of "glue" between an application and one or more database _driver_
modules. It is the driver modules which do most of the real work. The DBI
provides a standard interface and framework for the drivers to operate
within.
This document often uses terms like _references_, _objects_, _methods_. If
you're not familiar with those terms then it would be a good idea to read
at least the following perl manuals first: perlreftut, perldsc, perllol,
and perlboot.