How to Install and Uninstall perl-DBIx-Connector Package on openSuSE Tumbleweed

Last updated: May 18,2024

1. Install "perl-DBIx-Connector" package

Please follow the guidance below to install perl-DBIx-Connector on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-DBIx-Connector

2. Uninstall "perl-DBIx-Connector" package

Please follow the guidance below to uninstall perl-DBIx-Connector on openSuSE Tumbleweed:

$ sudo zypper remove perl-DBIx-Connector

3. Information about the perl-DBIx-Connector package on openSuSE Tumbleweed

Information for package perl-DBIx-Connector:
--------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-DBIx-Connector
Version : 0.59-1.3
Arch : noarch
Vendor : openSUSE
Installed Size : 99.8 KiB
Installed : No
Status : not installed
Source package : perl-DBIx-Connector-0.59-1.3.src
Upstream URL : https://metacpan.org/release/DBIx-Connector
Summary : Fast, safe DBI connection and transaction management
Description :
DBIx::Connector provides a simple interface for fast and safe DBI
connection and transaction management. Connecting to a database can be
expensive; you don't want your application to re-connect every time you
need to run a query. The efficient thing to do is to hang on to a database
handle to maintain a connection to the database in order to minimize that
overhead. DBIx::Connector lets you do that without having to worry about
dropped or corrupted connections.
You might be familiar with Apache::DBI and with the DBI's
'connect_cached()' constructor. DBIx::Connector serves a similar need, but
does a much better job. How is it different? I'm glad you asked!