|
|
sybperl-l Archive
Up Prev Next
From: "Dan Johansson" <Dan dot Johansson at MRMUSIC dot DE>
Subject: RE: Charactersets in CTlib
Date: Dec 15 1999 1:44PM
Hi,
This doesn't work for me (:-(
======================================================================
Dan Johansson
Mr Music Production GmbH
Fuerstenriederstr. 279a
D-81377 Munich
Germany
mailto:Dan.Johansson@mrmusic.de
----------------------------------------------------------------------
*** Don't drink and root! ***
This message is printed on 100% recycled electrons!
======================================================================
>>> Robert Lang 15.12.1999 14.26 Uhr >>>
>Do this before you grab a handle.
>
> Sybase::CTlib::CS_SYB_CHARSET(iso_1);
>
>Regards,
>
>Robert Lang
>rlang@lincap.com
If I code like this:
#!/usr/contrib/bin/perl -w
use Sybase::CTlib;
use strict;
Sybase::CTlib::CS_SYB_CHARSET(iso_1);
I'm getting the following error:
Bareword "iso_1" not allowed while "strict subs" in use at xxxx line 5.
BEGIN not safe after errors--compilation aborted at xxxx line 5.
And if I code like this:
#!/usr/contrib/bin/perl -w
use Sybase::CTlib::CS_SYB_CHARSET(iso_1);
use strict;
I'm getting the following error:
Can't locate Sybase/CTlib/CS_SYB_CHARSET.pm in @INC (@INC contains: /usr/contrib/lib/perl5/PA-RISC1.1/5.00404 /usr/contrib/lib/perl5
/usr/contrib/lib/perl5/site_perl/PA-RISC1.1 /usr/contrib/lib/perl5/site_perl .) at xxxx line 2.
BEGIN failed--compilation aborted at xxxx line 2.
Does someone have any suggestions??
//Dan
|