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

Last updated: July 03,2024

1. Install "perl-DBIx-Simple" package

Here is a brief guide to show you how to install perl-DBIx-Simple on openSuSE Tumbleweed

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

2. Uninstall "perl-DBIx-Simple" package

Learn how to uninstall perl-DBIx-Simple on openSuSE Tumbleweed:

$ sudo zypper remove perl-DBIx-Simple

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

Information for package perl-DBIx-Simple:
-----------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-DBIx-Simple
Version : 1.37-1.24
Arch : noarch
Vendor : openSUSE
Installed Size : 71.7 KiB
Installed : No
Status : not installed
Source package : perl-DBIx-Simple-1.37-1.24.src
Upstream URL : http://search.cpan.org/dist/DBIx-Simple/
Summary : Very complete easy-to-use OO interface to DBI
Description :
DBIx::Simple provides a simplified interface to DBI, Perl's powerful
database module.
This module is aimed at rapid development and easy maintenance. Query
preparation and execution are combined in a single method, the result
object (which is a wrapper around the statement handle) provides easy
row-by-row and slurping methods.
The 'query' method returns either a result object, or a dummy object. The
dummy object returns undef (or an empty list) for all methods and when used
in boolean context, is false. The dummy object lets you postpone (or skip)
error checking, but it also makes immediate error checking simply
'$db->query(...) or die $db->error'.