mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-07 22:28:47 -04:00
Apply a patch from Björn Höhrmann (fix #31)
This commit is contained in:
parent
f3b305d442
commit
1eda646cd8
1 changed files with 1 additions and 1 deletions
|
@ -389,7 +389,7 @@ time. Here is a way to do it with a virtual table :
|
||||||
my @files = ... ; # list of files to inspect
|
my @files = ... ; # list of files to inspect
|
||||||
|
|
||||||
# apply the L<stat> function to each file
|
# apply the L<stat> function to each file
|
||||||
our $file_stats = [ map {($_, stat $_)} @files];
|
our $file_stats = [ map { [ $_, stat $_ ] } @files];
|
||||||
|
|
||||||
# create a temporary virtual table
|
# create a temporary virtual table
|
||||||
$dbh->do(<<"");
|
$dbh->do(<<"");
|
||||||
|
|
Loading…
Add table
Reference in a new issue