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

OP::Persistence::Generic - Abstract base for DBI mix-in modules

SYNOPSIS

  package OP::Persistence::NewDBIType;

  use strict;
  use warnings;

  use base qw| OP::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

OP::Persistence

This file is part of OP.