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

DBD::SQLite: applied a doc patch to address the permission issue of a db directory [RT #41047]

This commit is contained in:
Kenichi Ishigaki 2009-01-29 01:48:29 +00:00
parent e05342e0af
commit e109bc83b4

View file

@ -5,7 +5,7 @@ use strict;
use DBI; use DBI;
use vars qw($err $errstr $state $drh $VERSION @ISA); use vars qw($err $errstr $state $drh $VERSION @ISA);
$VERSION = '1.14'; $VERSION = '1.15';
use DynaLoader(); use DynaLoader();
@ISA = ('DynaLoader'); @ISA = ('DynaLoader');
@ -544,6 +544,10 @@ And then retreival just works:
=head1 NOTES =head1 NOTES
Although the database is stored in a single file, the directory containing the
database file must be writable by SQLite because the library will create
several temporary files there.
To access the database from the command line, try using dbish which comes with To access the database from the command line, try using dbish which comes with
the DBI module. Just type: the DBI module. Just type: