1 package DBIx::Class::Storage::DBI::NoBindVars;
6 use base 'DBIx::Class::Storage::DBI';
11 DBIx::Class::Storage::DBI::NoBindVars - Sometime DBDs have poor to no support for bind variables
15 This class allows queries to work when the DBD or underlying library does not
16 support the usual C<?> placeholders, or at least doesn't support them very
17 well, as is the case with L<DBD::Sybase>
23 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.
29 my $retval = $self->next::method(@_);
30 $self->disable_sth_caching(1);
34 =head2 _prep_for_execute
36 Manually subs in the values for the usual C<?> placeholders.
40 sub _prep_for_execute {
43 my ($op, $extra_bind, $ident) = @_;
45 my ($sql, $bind) = $self->next::method(@_);
47 # stringify args, quote via $dbh, and manually insert
49 my @sql_part = split /\?/, $sql;
52 foreach my $bound (@$bind) {
53 my $col = shift @$bound;
54 my $datatype = 'FIXME!!!';
55 foreach my $data (@$bound) {
59 $data = $self->_dbh->quote($data);
60 $new_sql .= shift(@sql_part) . $data;
63 $new_sql .= join '', @sql_part;
65 return ($new_sql, []);
70 Brandon Black <blblack@gmail.com>
72 Trym Skaar <trym@tryms.no>
76 You may distribute this code under the same terms as Perl itself.