NAME
Sybase::Sybperl - sybperl 1.0xx emulation module
SYNOPSIS
require 'sybperl.pl';
$dbproc = dblogin($user, $pwd, $server);
dbcmd($dbproc, "select * from sysusers");
dbsqlexec($dbproc);
dbresults($dbproc);
while(@data = dbnextrow($dbproc)) {
print "@data\n";
}
DESCRIPTION
The Sybase::Sybperl module is provided to ease porting old perl4/sybperl 1.x programs to perl5. It is not recommended that this module be used for any new project. See Sybase::DBlib or Sybase::CTlib for alternatives.
The old sybperl 1.0xx manpage is in the pod/sybperl-1.0xx.man in the sybperl source distribution.
AUTHOR
Michael Peppler <mpeppler@peppler.org>.