Subject: | MLDBM Database conversion |
Date: | Fri, 18 Apr 2008 16:06:49 +0200 |
To: | bug-MLDBM [...] rt.cpan.org |
From: | Gilles LAMIRAL <gilles.lamiral [...] laposte.net> |
Hello Josh and perl developpers,
bug-MLDBM@rt.cpan.org.
First thanks for maintening the MLDBM module.
Question:
How can I do to convert a SDBM_File FreezeThaw file to a
DB_File Storable file?
For example, the following code breaks :
#!/usr/bin/perl
use strict;
use warnings;
use Fcntl;
use MLDBM;
use Storable;
my $o = tie my %o, 'MLDBM', 'mldbm', O_CREAT|O_RDWR, 0640 or die $!;
$o->UseDB('DB_File');
$o->Serializer('Storable');
$o{'ENV'} = 'lalala';
use Data::Dumper;
print Data::Dumper->Dump([%o]);
with the error:
Can't locate auto/Storable/serialize.al in @INC
Thanks in advance.
--
Au revoir, 02 99 64 31 77
Gilles Lamiral. France, Chavagne (35310) 06 20 79 76 06