sybperl-l Archive
Up Prev Next
From: kvk at hmco dot com
Subject: Prints for stored procs not working in Perl5
Date: Aug 23 1999 9:00PM
I have always used prints in stored procs to get output. I'm doing
it now with Perl5 but the messages aren't coming out.
Here's any example--
-----------------------------------------------------------
create fooproc as print "This is a test"
--------------------------------------------------
#!/usr/local/bin/perl5
use Sybase::DBlib;
$DB = Sybase::DBlib->dblogin('foouser', 'footest', 'CORPTSTW', 'printproc');
$sql="exec fooproc";
$DB->sql($sql);
--------------------------------------------------
I get nothing on stdout when I run the program.
Any clue?
|