How to Install and Uninstall perl-Class-DBI-Plugin.noarch Package on Fedora 34

Last updated: September 22,2024

1. Install "perl-Class-DBI-Plugin.noarch" package

Please follow the steps below to install perl-Class-DBI-Plugin.noarch on Fedora 34

$ sudo dnf update $ sudo dnf install perl-Class-DBI-Plugin.noarch

2. Uninstall "perl-Class-DBI-Plugin.noarch" package

Please follow the guidelines below to uninstall perl-Class-DBI-Plugin.noarch on Fedora 34:

$ sudo dnf remove perl-Class-DBI-Plugin.noarch $ sudo dnf autoremove

3. Information about the perl-Class-DBI-Plugin.noarch package on Fedora 34

Last metadata expiration check: 5:05:00 ago on Tue Sep 6 02:10:55 2022.
Available Packages
Name : perl-Class-DBI-Plugin
Version : 0.03
Release : 43.fc34
Architecture : noarch
Size : 14 k
Source : perl-Class-DBI-Plugin-0.03-43.fc34.src.rpm
Repository : fedora
Summary : Abstract base class for Class::DBI plugins
URL : https://metacpan.org/release/Class-DBI-Plugin
License : GPL+ or Artistic
Description : Class::DBI::Plugin is an abstract base class for Class::DBI plugins. Its
: purpose is to make writing plugins easier. Writers of plugins should be able
: to concentrate on the functionality their module provides, instead of having
: to deal with the symbol table hackery involved when writing a plugin module.
: Only three things must be remembered:
:
: * All methods to be exported are given the "Plugged" attribute. All other
: methods are not exported to the plugged-in class.
:
: * Method calls that are to be sent to the plugged-in class are put in the
: init() method. Examples of these are set_sql(), add_trigger() and so on.
:
: * The class parameter for the init() method and the "Plugged" methods is the
: plugged-in class, not the plugin class.