|
||||
sybperl-l ArchiveUp Prev Next
From: "Jeffries, Jim J" <jim dot jeffries at nwa dot com>
How do I get a count of the number of rows returned when using
Sybase::CTlib?
Here is my program so far.
#!/usr/local/bin/perl
use Sybase::CTlib;
$dbh = new Sybase::CTlib 'user', 'password', 'server';
$dbh->ct_execute("select fileid from o_file where fileid = 6077055");
print "Rowcount: " , ROW_COUNT, "\n";
Thanks.
|