2c60a4113a28f1ae1c7864d84d7dc20e49618986
[Fuse-DBI] / README
1 Fuse::DBI - mount your database as filesystem and use it
2 ========================================================
3
4 This module will use Fuse module, part of FUSE (Filesystem in USErspace)
5 available at http://fuse.sourceforge.net/ to mount your database as file
6 system.
7
8 That will give you possibility to use normal file-system tools (cat, grep,
9 vi) to manipulate data in database.
10
11 It's actually opposite of Oracle's intention to put everything into
12 database.
13
14 Type perldoc Fuse::DBI or perldoc examples/webgui.pl to get more
15 instructions.
16
17 INSTALLATION
18
19 To install this module type the following:
20
21    perl Makefile.PL
22    make
23    make test
24    make install
25
26 DEPENDENCIES
27
28 This module requires these other modules and libraries:
29
30    Fuse
31    DBI
32    Carp
33    POSIX
34    File::Find
35
36 Fuse module comes from CVS version of Fuse. If you have problem compiling
37 it, try to apply patch from fuse-perl-patch directory.
38
39 COPYRIGHT AND LICENCE
40
41 Copyright (C) 2004 by Dobrica Pavlinusic
42
43 This library is free software; you can redistribute it and/or modify
44 it under the same terms as Perl itself, either Perl version 5.8.4 or,
45 at your option, any later version of Perl 5 you may have available.
46