1 package DBIx::Class::Storage::DBI::NoBindVars;
6 use base 'DBIx::Class::Storage::DBI';
9 use DBIx::Class::SQLMaker::LimitDialects;
10 use List::Util qw/first/;
16 DBIx::Class::Storage::DBI::NoBindVars - Sometime DBDs have poor to no support for bind variables
20 This class allows queries to work when the DBD or underlying library does not
21 support the usual C<?> placeholders, or at least doesn't support them very
22 well, as is the case with L<DBD::Sybase>
28 We can't cache very effectively without bind variables, so force the C<disable_sth_caching> setting to be turned on when the connect info is set.
34 my $retval = $self->next::method(@_);
35 $self->disable_sth_caching(1);
39 =head2 _prep_for_execute
41 Manually subs in the values for the usual C<?> placeholders.
45 sub _prep_for_execute {
48 my ($sql, $bind) = $self->next::method(@_);
50 # stringify bind args, quote via $dbh, and manually insert
51 #my ($op, $ident, $args) = @_;
54 my @sql_part = split /\?/, $sql;
58 my $data = (ref $_->[1]) ? "$_->[1]" : $_->[1]; # always stringify, array types are currently not supported
60 my $datatype = $_->[0]{sqlt_datatype};
62 $data = $self->_prep_interpolated_value($datatype, $data)
65 $data = $self->_get_dbh->quote($data)
66 unless ($datatype and $self->interpolate_unquoted($datatype, $data) );
68 $new_sql .= shift(@sql_part) . $data;
71 $new_sql .= join '', @sql_part;
73 return ($new_sql, []);
76 =head2 interpolate_unquoted
78 This method is called by L</_prep_for_execute> for every column in
79 order to determine if its value should be quoted or not. The arguments
80 are the current column data type and the actual bind value. The return
81 value is interpreted as: true - do not quote, false - do quote. You should
82 override this in you Storage::DBI::<database> subclass, if your RDBMS
83 does not like quotes around certain datatypes (e.g. Sybase and integer
84 columns). The default method returns false, except for integer datatypes
85 paired with values containing nothing but digits.
89 Always validate that the bind-value is valid for the current datatype.
90 Otherwise you may very well open the door to SQL injection attacks.
94 sub interpolate_unquoted {
95 #my ($self, $datatype, $value) = @_;
104 $_[1] =~ /int(?:eger)? | (?:tiny|small|medium|big)int/ix
110 =head2 _prep_interpolated_value
112 Given a datatype and the value to be inserted directly into a SQL query, returns
113 the necessary string to represent that value (by e.g. adding a '$' sign)
117 sub _prep_interpolated_value {
118 #my ($self, $datatype, $value) = @_;
124 See L<DBIx::Class/CONTRIBUTORS>
128 You may distribute this code under the same terms as Perl itself.