sybperl-l Archive
Up Prev Next
From: Louis Proyect <lnp3 at columbia dot edu>
Subject: @res?
Date: May 19 1999 4:47PM
I am using the new version of sql.pl which does not print the value of @res
after &sql is called. However, if I print @res in sql.pl, it appears okay.
What's the problem? (I haven't had the time to bone up on Perl 5, but I
have a feeling that this has nothing to do with which version I am using.)
Louis Proyect
Columbia University Administrative Information Services
======================
#!/usr/local/bin/perl
use Sybase::DBlib;
require "sql.pl";
$dbh = Sybase::DBlib->dblogin("xxx", "yyyy", "zzz");
&sql($dbh, 'sp_helpdb');
print @res;
|