|
|
sybperl-l Archive
Up Prev Next
From: "Marcio Paulo Guedes" <mpguedes at uol dot com dot br>
Subject: unknow message
Date: Jun 6 2000 3:10AM
When i run sqsh or the following perl script:
#!/usr/local/bin/perl
# Load the Sybase::CTlib module:
use Sybase::CTlib;
# Allocate a new Database 'handle':
$dbh = new Sybase::CTlib 'sa', '', 'ctgf_n2';
# Send the query to th server:
$dbh->ct_execute("select uid, name from sysusers");
# Retrieve the result sets
while($dbh->ct_results($restype) == CS_SUCCEED) {
# Skip non-fetchable results:
next unless $dbh->ct_fetchable($restype);
# Retrieve actual data rows:
while(($uid, $name) = $dbh->ct_fetch) {
print "$uid - $name\n";
}
}
the system return the following message:
Unknown marker: 0!!
What's wrong in my configuration? the ctgf_n2 server runs MS-SQL 7.0
Márcio Paulo Guedes
mpguedes@uol.com.br
Empresa Folha da Manhã S/A
|