X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FStorage%2FDBI%2FNoBindVars.pm;h=85810cc0470812a832166d076ccffdc45d00b713;hb=fcb7fcbb6bde5f9a211c62011b3110f07828caec;hp=a5eb1ab1fd6088377238adb848ae00602e50f732;hpb=ee53ca0f8e39882bc30fee5cb6db9e0318d09d59;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/Storage/DBI/NoBindVars.pm b/lib/DBIx/Class/Storage/DBI/NoBindVars.pm index a5eb1ab..85810cc 100644 --- a/lib/DBIx/Class/Storage/DBI/NoBindVars.pm +++ b/lib/DBIx/Class/Storage/DBI/NoBindVars.pm @@ -6,7 +6,12 @@ use warnings; use base 'DBIx::Class::Storage::DBI'; use mro 'c3'; -=head1 NAME +use DBIx::Class::SQLMaker::LimitDialects; +use List::Util qw/first/; + +use namespace::clean; + +=head1 NAME DBIx::Class::Storage::DBI::NoBindVars - Sometime DBDs have poor to no support for bind variables @@ -76,7 +81,8 @@ are the current column data type and the actual bind value. The return value is interpreted as: true - do not quote, false - do quote. You should override this in you Storage::DBI:: subclass, if your RDBMS does not like quotes around certain datatypes (e.g. Sybase and integer -columns). The default method always returns false (do quote). +columns). The default method returns false, except for integer datatypes +paired with values containing nothing but digits. WARNING!!! @@ -87,6 +93,17 @@ columns). The default method always returns false (do quote). sub interpolate_unquoted { #my ($self, $datatype, $value) = @_; + + return 1 if ( + defined $_[2] + and + $_[1] + and + $_[2] !~ /\D/ + and + $_[1] =~ /int(?:eger)? | (?:tiny|small|medium|big)int/ix + ); + return 0; }