in reply to Re: perl native db
in thread perl native db
Thank you! I'm trying to create a system-wide config area where I'll place a simple config file and the database file, however, I'm getting all kinds of errors (module not installed and etc)
#!/usr/bin/perl use strict; use File::UserConfig; #use File::ShareDir ':ALL'; use File::Read; my $username = getlogin(); print "user: $username\n"; #my $configdir = File::UserConfig->configdir; my $configdir = File::UserConfig->new( dist => 'Map-Energy', dirname => '.map_energy', module => 'Map::Energy', )->configdir; #my $dir = dist_dir('map_energy'); #my $config_file = dist_file( 'map_energy', 'config/data.txt'); #my $db_file = dist_file( 'map_energy', 'db/mapdata.db'); #my $mapsettings = read_file({ as_root => 1, skip_comments => 1, skip_ +blanks => 1 }, $config_file); #print "map settings: $mapsettings\n"; exit;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: perl native db
by CountZero (Bishop) on Aug 16, 2011 at 10:23 UTC | |
by pashanoid (Scribe) on Aug 16, 2011 at 11:29 UTC |