rhj4 has asked for the wisdom of the Perl Monks concerning the following question:
I am a C#/SQL Server programmer tasked with converting an ancient Perl/Posgtres website into C#. I have been programming for many years and in many languages, but never in Perl and I am having some challenges getting started.
I have downloaded and installed Postgresql 9.0 on my desktop and populated it with data from the production site which is on a machine that could die any day. I have written some test code in C# using Npgsql that successfully accesses data in that database, but I have encountered problems using PGAdmin III and psql. Both appear flakey or improperly configured (highly likely).
I have installed ActiveState 6.0.3 and Strawberry Perl and I am attempting to get started, but hit a wall quickly. The code below fails on the “use Pg;” line. I have located several versions of this file, but none that seems to meet the approval of the compiler. I think the problem involves four variables:
Can you tell me what version of Pg I should install and where to put it in the code base?
#!/usr/bin/perl require "PAQ.cfg"; require "PAQ_include.pl"; use CGI qw(:standard); use Pg; <-- FAILS HERE - CANNOT LOCATE FILE $q = new CGI;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Perl, Postgres and Windows
by syphilis (Archbishop) on Jan 18, 2011 at 01:12 UTC | |
|
Re: Perl, Postgres and Windows
by stefbv (Priest) on Jan 18, 2011 at 10:17 UTC | |
|
Re: Perl, Postgres and Windows
by Limbic~Region (Chancellor) on Jan 18, 2011 at 16:35 UTC | |
by rhj4 (Initiate) on Jan 19, 2011 at 18:48 UTC |