line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package DBIx::Class::Storage::DBI::ODBC::SQL_Anywhere; |
2
|
|
|
|
|
|
|
|
3
|
2
|
|
|
2
|
|
1432
|
use strict; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
60
|
|
4
|
2
|
|
|
2
|
|
9
|
use warnings; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
62
|
|
5
|
2
|
|
|
|
|
594
|
use base qw/ |
6
|
|
|
|
|
|
|
DBIx::Class::Storage::DBI::ODBC |
7
|
|
|
|
|
|
|
DBIx::Class::Storage::DBI::SQLAnywhere |
8
|
2
|
|
|
2
|
|
8
|
/; |
|
2
|
|
|
|
|
2
|
|
9
|
2
|
|
|
2
|
|
10
|
use mro 'c3'; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
11
|
|
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
|
|
|
|
|
|
|
|