Re: PostgreSQL DBD setup

2001-06-27 Thread Ulle Siedentop
Had just yesterday the same problem. Did not get DBD::Pg working using it with Suse Linux 7.0 Postgres RPM Distribution. It might be easier to use Postgres source distribution instead of using a RPM distribution. After compiling Postgres as described in the INSTALL file i had to set the environm

Re: Urgent !!! installing Storable.pm

2001-09-07 Thread Ulle Siedentop
- Original Message - From: Rajeev Rumale <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, September 17, 2001 7:09 AM Subject: Urgent !!! installing Storable.pm > Hi, > > I need to install and use the Storable.pm in my machine. I am useing Active > Perl on Win2k machine. use ppm

Problems with Referenzes

2001-09-26 Thread Ulle Siedentop
I try to understand references in perl. $try = "test"; # Scalar $try conains value test print $try; # prints test $try_ref = \$try; # Scalar $try_ref contains reference to $try print $try_ref; # prints SCALAR(0x1234567) print $$try_ref; # prints test Now I would like to do something simi