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

Last updated: April 27,2024

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

Learn how to install perl-Class-DBI-Plugin.noarch on Fedora 36

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

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

In this section, we are going to explain the necessary steps to uninstall perl-Class-DBI-Plugin.noarch on Fedora 36:

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

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

Last metadata expiration check: 1:10:17 ago on Thu Sep 8 02:05:26 2022.
Available Packages
Name : perl-Class-DBI-Plugin
Version : 0.03
Release : 46.fc36
Architecture : noarch
Size : 14 k
Source : perl-Class-DBI-Plugin-0.03-46.fc36.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.