/[fuse_dbi]/fuse-couchdb/examples/webgui.pl
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /fuse-couchdb/examples/webgui.pl

Parent Directory Parent Directory | Revision Log Revision Log


Revision 13 - (show annotations)
Sun Aug 29 20:12:37 2004 UTC (19 years, 7 months ago) by dpavlin
Original Path: trunk/examples/webgui.pl
File MIME type: text/plain
File size: 603 byte(s)
getdir fix, working WebGUI example

1 #!/usr/bin/perl -w
2
3 use strict;
4 use blib;
5 use Fuse::DBI;
6
7 my $sql_filenames = q{
8 select
9 oid as id,
10 namespace||'/'||name||' ['||oid||']' as filename,
11 length(template) as size,
12 iseditable as writable
13 from template ;
14 };
15
16 my $sql_read = q{
17 select template
18 from template
19 where oid = ?;
20 };
21
22 my $sql_update = q{
23 update template
24 set template = ?
25 where oid = ?;
26 };
27
28 my $mnt = Fuse::DBI->mount({
29 filenames => $sql_filenames,
30 read => $sql_read,
31 update => $sql_update,
32 dsn => 'DBI:Pg:dbname=webgui',
33 mount => '/mnt2',
34 });
35
36 print "Press enter to exit...";
37 my $foo = <STDIN>;
38
39 $mnt->umount;

Properties

Name Value
svn:executable *

  ViewVC Help
Powered by ViewVC 1.1.26