The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Devel::Ladybug::Persistence::Generic - Abstract base for DBI mix-in modules

SYNOPSIS

  package Devel::Ladybug::Persistence::NewDBIType;

  use strict;
  use warnings;

  use base qw| Devel::Ladybug::Persistence::Generic |;

  # ...

  1;

DESCRIPTION

This module should not be used directly.

New DBI types should use this module as a base, and override methods as needed.

SEE ALSO

Devel::Ladybug::Persistence

This file is part of Devel::Ladybug.