This file is indexed.

/usr/share/perl5/Tangram/Driver/Sybase.pod is in libtangram-perl 2.12-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
=head1 NAME

Tangram::Sybase - Orthogonal Object Persistence in Sybase databases

=head1 SYNOPSIS

   use Tangram;
   use Tangram::Sybase;

   $schema = Tangram::Sybase->schema( $hashref );

   Tangram::Sybase->deploy($schema, $dbh);
      
   $storage = Tangram::Sybase->connect( $schema,
      $data_source, $username, $password );

   $storage->disconnect();

   Tangram::Sybase->retreat($schema, $dbh);

=head1 DESCRIPTION

This is the entry point in the Sybase-specific object-relational
persistence backend.

Sybase only supports a single prepared statement per connection. This
backend disables the usage of prepared statements.

The vanilla Relational backend may not be used with Sybase databases.

=head1 METHODS

This backend does not add any methods; for a description of
available methods, see L<Tangram::Relational>.

=head1 WARNING

This backend has not been tested in quite some time.  Is the database
even called C<Sybase> any more?

=cut