Re: Sanity check

2013-07-26 Thread H.Merijn Brand
On Fri, 26 Jul 2013 14:33:10 +0200, "H.Merijn Brand" wrote: > DBD::File supports locking of files used as tables. That flag is stored > as f_lock: 0 no locking, 1: shared lock, 2: exclusive lock > > When a io handle is opened as ScalarIO > > open my $fh, "<", \$data; > > locking will hang

Sanity check

2013-07-26 Thread H.Merijn Brand
DBD::File supports locking of files used as tables. That flag is stored as f_lock: 0 no locking, 1: shared lock, 2: exclusive lock When a io handle is opened as ScalarIO open my $fh, "<", \$data; locking will hang the operation, so we have to disable locking or die or croak or whatever, but