sybperl-l Archive
Up Prev Next
From: tscheresky <tscheresky at micron dot com>
Subject: Setting SYBASE environment variable...
Date: Nov 23 1999 10:22PM
Michael,
Can you make the following fix to the DBlib and CTlib Modules, and any other
module from which you set the SYBASE environment variable. You can probably
see that between double quotes the '\' disappears. Windows :-(
Thanks... Todd
*** DBlib.pm Tue Oct 26 08:48:09 1999
--- DBlib.fix Tue Nov 23 15:11:44 1999
***************
*** 214,220 ****
use Carp;
BEGIN {
! $ENV{SYBASE} = "C:\Sybase";
}
--- 214,220 ----
use Carp;
BEGIN {
! $ENV{SYBASE} = 'C:\Sybase';
}
|