Net::FTPServer::DBeg1::IOBlob - The example DB FTP server personality


Net-FTPServer documentation  | view source Contained in the Net-FTPServer distribution.

Index


NAME

Top

Net::FTPServer::DBeg1::IOBlob - The example DB FTP server personality

SYNOPSIS

Top

  use Net::FTPServer::DBeg1::IOBlob;

DESCRIPTION

Top

METHODS

Top

$io = Net::FTPServer::DBeg1::IOBlob ('r', $dbh, $blob_id);
$io = Net::FTPServer::DBeg1::IOBlob ('w', $dbh, $blob_id);

Create an IO handle for reading or writing a PostgreSQL blob.

$io->getc ();

Read 1 byte from the buffer and return it

$io->read ($buffer, $nbytes, [$offset]);
$io->sysread ($buffer, $nbytes, [$offset]);

Read $nbytes from the handle and place them in $buffer at offset $offset.

$io->write ($buffer, $nbytes, [$offset]);
$io->syswrite ($buffer, $nbytes, [$offset]);

Write $nbytes to the handle from $buffer offset $offset.

$io->print ($buffer);
$io->close;

Close the IO handle.

AUTHORS

Top

Richard Jones (rich@annexia.org).

COPYRIGHT

Top

SEE ALSO

Top

Net::FTPServer(3), perl(1)


Net-FTPServer documentation  | view source Contained in the Net-FTPServer distribution.