line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package DBIx::Class::Storage::DBI::ODBC::SQL_Anywhere; |
2
|
|
|
|
|
|
|
|
3
|
2
|
|
|
2
|
|
1338
|
use strict; |
|
2
|
|
|
|
|
5
|
|
|
2
|
|
|
|
|
55
|
|
4
|
2
|
|
|
2
|
|
11
|
use warnings; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
54
|
|
5
|
2
|
|
|
|
|
663
|
use base qw/ |
6
|
|
|
|
|
|
|
DBIx::Class::Storage::DBI::ODBC |
7
|
|
|
|
|
|
|
DBIx::Class::Storage::DBI::SQLAnywhere |
8
|
2
|
|
|
2
|
|
10
|
/; |
|
2
|
|
|
|
|
4
|
|
9
|
2
|
|
|
2
|
|
14
|
use mro 'c3'; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
10
|
|
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<DBIx::Class::Storage::DBI::SQLAnywhere>, see |
21
|
|
|
|
|
|
|
that module for details. |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head1 CAVEATS |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head2 uniqueidentifierstr data type |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
If you use the C<uniqueidentifierstr> type with this driver, your queries may |
28
|
|
|
|
|
|
|
fail with: |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
Data truncated (SQL-01004) |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
B<WORKAROUND:> use the C<uniqueidentifier> type instead, it is more efficient |
33
|
|
|
|
|
|
|
anyway. |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head1 FURTHER QUESTIONS? |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
Check the list of L<additional DBIC resources|DBIx::Class/GETTING HELP/SUPPORT>. |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
This module is free software L<copyright|DBIx::Class/COPYRIGHT AND LICENSE> |
42
|
|
|
|
|
|
|
by the L<DBIx::Class (DBIC) authors|DBIx::Class/AUTHORS>. You can |
43
|
|
|
|
|
|
|
redistribute it and/or modify it under the same terms as the |
44
|
|
|
|
|
|
|
L<DBIx::Class library|DBIx::Class/COPYRIGHT AND LICENSE>. |
45
|
|
|
|
|
|
|
|