Hello...
This script:
*******************************
use warnings;
use Win32:ODBC;
my $db = new Win32::ODBC("TheDB");
$db->Sql("SELECT * FROM dbo.foo");
$db->FetchRow();
my @values = $db->Data;
print @values;
*************************************
Yields two "Use of uninitialized value in print..." error messages before it
prints @values.
If anyone could explain why (and maybe how to get rid of them), I'd
appreciate it...
-Chris
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>