Sybase::NoBindVars now correctly quotes
Rafael Kitover [Wed, 10 Jun 2009 11:46:37 +0000 (11:46 +0000)]
lib/DBIx/Class/Storage/DBI/NoBindVars.pm
lib/DBIx/Class/Storage/DBI/Sybase/NoBindVars.pm

index 7a48105..d58ccae 100644 (file)
@@ -53,10 +53,11 @@ sub _prep_for_execute {
   foreach my $bound (@$bind) {
     my $col = shift @$bound;
 
-    my $datatype = 'FIXME!!!';
+    $col =~ s/^([^.]*)\.//;
+    my $alias = $1 || 'me';
 
-# this is what needs to happen:
-#    my $datatype = $rsrc->column_info($col)->{data_type};
+    my $datatype = $self->_resolve_ident_sources($ident)->{$alias}
+        ->column_info($col)->{data_type};
 
     foreach my $data (@$bound) {
         if(ref $data) {
index f3a46f6..4ebb8cf 100644 (file)
@@ -37,14 +37,9 @@ sub should_quote_data_type {
 
   return $self->next::method(@_) if not defined $value;
 
-## this is the correct method, but we have no type yet
-#  if (my $key = List::Util::first { $type =~ /$_/i } keys %noquote) {
-#    return 0 if $noquote{$key}->($value);
-#  }
-
-# temporary hack
-  return 0 if Scalar::Util::looks_like_number($value) ||
-    ($value =~ /^\$(\S*)\z/ && Scalar::Util::looks_like_number($1));
+  if (my $key = List::Util::first { $type =~ /$_/i } keys %noquote) {
+    return 0 if $noquote{$key}->($value);
+  }
 
   return $self->next::method(@_);
 }