line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package DBIx::Class::Storage::DBI::Sybase::ASE::NoBindVars; |
2
|
|
|
|
|
|
|
|
3
|
2
|
|
|
2
|
|
1428
|
use warnings; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
68
|
|
4
|
2
|
|
|
2
|
|
8
|
use strict; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
43
|
|
5
|
|
|
|
|
|
|
|
6
|
2
|
|
|
|
|
248
|
use base qw/ |
7
|
|
|
|
|
|
|
DBIx::Class::Storage::DBI::NoBindVars |
8
|
|
|
|
|
|
|
DBIx::Class::Storage::DBI::Sybase::ASE |
9
|
2
|
|
|
2
|
|
6
|
/; |
|
2
|
|
|
|
|
3
|
|
10
|
2
|
|
|
2
|
|
8
|
use mro 'c3'; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
9
|
|
11
|
2
|
|
|
2
|
|
42
|
use List::Util 'first'; |
|
2
|
|
|
|
|
2
|
|
|
2
|
|
|
|
|
131
|
|
12
|
2
|
|
|
2
|
|
11
|
use Scalar::Util 'looks_like_number'; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
99
|
|
13
|
2
|
|
|
2
|
|
11
|
use namespace::clean; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
10
|
|
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
sub _init { |
16
|
0
|
|
|
0
|
|
|
my $self = shift; |
17
|
0
|
|
|
|
|
|
$self->disable_sth_caching(1); |
18
|
0
|
|
|
|
|
|
$self->_identity_method('@@IDENTITY'); |
19
|
0
|
|
|
|
|
|
$self->next::method (@_); |
20
|
|
|
|
|
|
|
} |
21
|
|
|
|
|
|
|
|
22
|
0
|
|
|
0
|
|
|
sub _fetch_identity_sql { 'SELECT ' . $_[0]->_identity_method } |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
my $number = sub { looks_like_number $_[0] }; |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
my $decimal = sub { $_[0] =~ /^ [-+]? \d+ (?:\.\d*)? \z/x }; |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
my %noquote = ( |
29
|
|
|
|
|
|
|
int => sub { $_[0] =~ /^ [-+]? \d+ \z/x }, |
30
|
|
|
|
|
|
|
bit => => sub { $_[0] =~ /^[01]\z/ }, |
31
|
|
|
|
|
|
|
money => sub { $_[0] =~ /^\$ \d+ (?:\.\d*)? \z/x }, |
32
|
|
|
|
|
|
|
float => $number, |
33
|
|
|
|
|
|
|
real => $number, |
34
|
|
|
|
|
|
|
double => $number, |
35
|
|
|
|
|
|
|
decimal => $decimal, |
36
|
|
|
|
|
|
|
numeric => $decimal, |
37
|
|
|
|
|
|
|
); |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
sub interpolate_unquoted { |
40
|
0
|
|
|
0
|
1
|
|
my $self = shift; |
41
|
0
|
|
|
|
|
|
my ($type, $value) = @_; |
42
|
|
|
|
|
|
|
|
43
|
0
|
0
|
0
|
|
|
|
return $self->next::method(@_) if not defined $value or not defined $type; |
44
|
|
|
|
|
|
|
|
45
|
0
|
0
|
0
|
0
|
|
|
if (my $key = first { $type =~ /$_/i } keys %noquote) { |
|
0
|
0
|
|
|
|
|
|
46
|
0
|
0
|
|
|
|
|
return 1 if $noquote{$key}->($value); |
47
|
|
|
|
|
|
|
} |
48
|
|
|
|
|
|
|
elsif ($self->is_datatype_numeric($type) && $number->($value)) { |
49
|
0
|
|
|
|
|
|
return 1; |
50
|
|
|
|
|
|
|
} |
51
|
|
|
|
|
|
|
|
52
|
0
|
|
|
|
|
|
return $self->next::method(@_); |
53
|
|
|
|
|
|
|
} |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
sub _prep_interpolated_value { |
56
|
0
|
|
|
0
|
|
|
my ($self, $type, $value) = @_; |
57
|
|
|
|
|
|
|
|
58
|
0
|
0
|
0
|
|
|
|
if ($type =~ /money/i && defined $value) { |
59
|
|
|
|
|
|
|
# change a ^ not followed by \$ to a \$ |
60
|
0
|
|
|
|
|
|
$value =~ s/^ (?! \$) /\$/x; |
61
|
|
|
|
|
|
|
} |
62
|
|
|
|
|
|
|
|
63
|
0
|
|
|
|
|
|
return $value; |
64
|
|
|
|
|
|
|
} |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
1; |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
=head1 NAME |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
DBIx::Class::Storage::DBI::Sybase::ASE::NoBindVars - Storage::DBI subclass for |
71
|
|
|
|
|
|
|
Sybase ASE without placeholder support |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
=head1 DESCRIPTION |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
If you're using this driver then your version of Sybase or the libraries you |
76
|
|
|
|
|
|
|
use to connect to it do not support placeholders. |
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
You can also enable this driver explicitly using: |
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
my $schema = SchemaClass->clone; |
81
|
|
|
|
|
|
|
$schema->storage_type('::DBI::Sybase::ASE::NoBindVars'); |
82
|
|
|
|
|
|
|
$schema->connect($dsn, $user, $pass, \%opts); |
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
See the discussion in |
85
|
|
|
|
|
|
|
L<< DBD::Sybase/Using ? Placeholders & bind parameters to $sth->execute >> |
86
|
|
|
|
|
|
|
for details on the pros and cons of using placeholders with this particular |
87
|
|
|
|
|
|
|
driver. |
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
One advantage of not using placeholders is that C |
90
|
|
|
|
|
|
|
for obtaining the last insert id of an C column, instead of having to |
91
|
|
|
|
|
|
|
do C |
92
|
|
|
|
|
|
|
|
93
|
|
|
|
|
|
|
When using this driver, bind variables will be interpolated (properly quoted of |
94
|
|
|
|
|
|
|
course) into the SQL query itself, without using placeholders. |
95
|
|
|
|
|
|
|
|
96
|
|
|
|
|
|
|
The caching of prepared statements is also explicitly disabled, as the |
97
|
|
|
|
|
|
|
interpolation renders it useless. |
98
|
|
|
|
|
|
|
|
99
|
|
|
|
|
|
|
=head1 FURTHER QUESTIONS? |
100
|
|
|
|
|
|
|
|
101
|
|
|
|
|
|
|
Check the list of L. |
102
|
|
|
|
|
|
|
|
103
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
104
|
|
|
|
|
|
|
|
105
|
|
|
|
|
|
|
This module is free software L |
106
|
|
|
|
|
|
|
by the L. You can |
107
|
|
|
|
|
|
|
redistribute it and/or modify it under the same terms as the |
108
|
|
|
|
|
|
|
L. |