Sybase::Sybperl - sybperl 1.0xx emulation module


sybperl documentation  | view source Contained in the sybperl distribution.

Index


NAME

Top

Sybase::Sybperl - sybperl 1.0xx emulation module

SYNOPSIS

Top

    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

Top

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

Top

Michael Peppler <mpeppler@peppler.org>.


sybperl documentation  | view source Contained in the sybperl distribution.