DBI::Mock - mock a DBI if we can't find the real one
Contents
Copyright And License
Copyright (C)2013 - The DBI development team
You may distribute this module under the terms of either the GNU General Public License or the Artistic
License, as specified in the Perl README file.
perl v5.36.0 2022-11-19 DBI::Mock(3pm)
Description
Name
DBI::Mock - mock a DBI if we can't find the real one
Synopsis
use DBI::Mock;
my $dbh = DBI::Mock->connect($data_source, $user, $pass, \%attr) or die $DBI::Mock::errstr;
my $sth = $dbh->prepare();
$sth->execute();
... copy some from DBI SYNOPSIS
