File Coverage

blib/lib/DBIx/Class/Storage/DBI/ODBC/SQL_Anywhere.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package DBIx::Class::Storage::DBI::ODBC::SQL_Anywhere;
2              
3 2     2   982 use strict;
  2         5  
  2         60  
4 2     2   12 use warnings;
  2         3  
  2         52  
5 2         744 use base qw/
6             DBIx::Class::Storage::DBI::ODBC
7             DBIx::Class::Storage::DBI::SQLAnywhere
8 2     2   10 /;
  2         5  
9 2     2   12 use mro 'c3';
  2         5  
  2         9  
10              
11             1;
12              
13             =head1 NAME
14              
15             DBIx::Class::Storage::DBI::ODBC::SQL_Anywhere - Driver for using Sybase SQL
16             Anywhere through ODBC
17              
18             =head1 SYNOPSIS
19              
20             All functionality is provided by L, see
21             that module for details.
22              
23             =head1 CAVEATS
24              
25             =head2 uniqueidentifierstr data type
26              
27             If you use the C type with this driver, your queries may
28             fail with:
29              
30             Data truncated (SQL-01004)
31              
32             B use the C type instead, it is more efficient
33             anyway.
34              
35             =head1 FURTHER QUESTIONS?
36              
37             Check the list of L.
38              
39             =head1 COPYRIGHT AND LICENSE
40              
41             This module is free software L
42             by the L. You can
43             redistribute it and/or modify it under the same terms as the
44             L.
45