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

Tao::DBI::st_deep - Tao statements for reading/writing nested Perl data in relational databases

SYNOPSIS

use Tao::DBI qw(dbi_connect);

$stmt = $dbh->prepare($sql, { type => 'deep', meta => $meta });
$stmt->execute($bind_values);
my $row = $stmt->fetchrow_hashref();

DESCRIPTION