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:
parent
e05342e0af
commit
e109bc83b4
1 changed files with 5 additions and 1 deletions
|
@ -5,7 +5,7 @@ use strict;
|
|||
|
||||
use DBI;
|
||||
use vars qw($err $errstr $state $drh $VERSION @ISA);
|
||||
$VERSION = '1.14';
|
||||
$VERSION = '1.15';
|
||||
|
||||
use DynaLoader();
|
||||
@ISA = ('DynaLoader');
|
||||
|
@ -544,6 +544,10 @@ And then retreival just works:
|
|||
|
||||
=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
|
||||
the DBI module. Just type:
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue