line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package DBIx::Class::Storage::DBI::Sybase::MSSQL; |
2
|
|
|
|
|
|
|
|
3
|
2
|
|
|
2
|
|
1326
|
use strict; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
52
|
|
4
|
2
|
|
|
2
|
|
8
|
use warnings; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
49
|
|
5
|
|
|
|
|
|
|
|
6
|
2
|
|
|
2
|
|
10
|
use DBIx::Class::Carp; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
16
|
|
7
|
2
|
|
|
2
|
|
11
|
use namespace::clean; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
12
|
|
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
carp 'Setting of storage_type is redundant as connections through DBD::Sybase' |
10
|
|
|
|
|
|
|
.' are now properly recognized and reblessed into the appropriate subclass' |
11
|
|
|
|
|
|
|
.' (DBIx::Class::Storage::DBI::Sybase::Microsoft_SQL_Server in the' |
12
|
|
|
|
|
|
|
.' case of MSSQL). Please remove the explicit call to' |
13
|
|
|
|
|
|
|
.q/ $schema->storage_type('::DBI::Sybase::MSSQL')/ |
14
|
|
|
|
|
|
|
.', as this storage class has been deprecated in favor of the autodetected' |
15
|
|
|
|
|
|
|
.' ::DBI::Sybase::Microsoft_SQL_Server'; |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
|
18
|
2
|
|
|
2
|
|
463
|
use base qw/DBIx::Class::Storage::DBI::Sybase::Microsoft_SQL_Server/; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
1155
|
|
19
|
2
|
|
|
2
|
|
12
|
use mro 'c3'; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
8
|
|
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
1; |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head1 NAME |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
DBIx::Class::Storage::DBI::Sybase::MSSQL - (DEPRECATED) Legacy storage class for MSSQL via DBD::Sybase |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head1 NOTE |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
Connections through DBD::Sybase are now correctly recognized and reblessed |
30
|
|
|
|
|
|
|
into the appropriate subclass (L |
31
|
|
|
|
|
|
|
in the case of MSSQL). Please remove the explicit storage_type setting from your |
32
|
|
|
|
|
|
|
schema. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head1 SYNOPSIS |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
This subclass supports MSSQL connected via L. |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
$schema->storage_type('::DBI::Sybase::MSSQL'); |
39
|
|
|
|
|
|
|
$schema->connect_info('dbi:Sybase:....', ...); |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=head1 FURTHER QUESTIONS? |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
Check the list of L. |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
This module is free software L |
48
|
|
|
|
|
|
|
by the L. You can |
49
|
|
|
|
|
|
|
redistribute it and/or modify it under the same terms as the |
50
|
|
|
|
|
|
|
L. |