1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 14:19:10 -04:00

list avaialable constants for clarity

This commit is contained in:
Kenichi Ishigaki 2016-01-07 19:45:38 +09:00
parent 125d5c17f4
commit fd95558594

View file

@ -197,5 +197,27 @@ You can import necessary SQLite constants from this module. Available tags are @
This module does not export anything by default.
\=head1 CONSTANTS
END
for my $tag (sort keys %constants) {
next if $tag eq 'all';
print $fh <<"END";
\=head2 $tag
\=over 4
END
for my $const (@{$constants{$tag}}) {
print $fh <<"END";
\=item SQLITE_$const
END
}
print $fh <<"END";
\=back
END
}
}