1 package DBIx::Class::Storage::DBI::Sybase::NoBindVars;
5 DBIx::Class::Storage::DBI::NoBindVars
6 DBIx::Class::Storage::DBI::Sybase
13 $self->disable_sth_caching(1);
17 # this works when NOT using placeholders
18 sub _fetch_identity_sql { 'SELECT @@IDENTITY' }
20 my $number = sub { Scalar::Util::looks_like_number($_[0]) };
22 my $decimal = sub { $_[0] =~ /^ [-+]? \d+ (?:\.\d*)? \z/x };
25 int => sub { $_[0] =~ /^ [-+]? \d+ \z/x },
26 bit => => sub { $_[0] =~ /^[01]\z/ },
27 money => sub { $_[0] =~ /^\$ \d+ (?:\.\d*)? \z/x },
35 sub should_quote_value {
37 my ($type, $value) = @_;
39 return $self->next::method(@_) if not defined $value or not defined $type;
41 if (my $key = List::Util::first { $type =~ /$_/i } keys %noquote) {
42 return 0 if $noquote{$key}->($value);
43 } elsif ($self->is_datatype_numeric($type) && $number->($value)) {
47 ## try to guess based on value
49 # return 0 if $number->($value) || $noquote->{money}->($value);
52 return $self->next::method(@_);
55 sub _prep_bind_value {
56 my ($self, $type, $value) = @_;
58 if ($type =~ /money/i && defined $value) {
59 # change a ^ not followed by \$ to a \$
60 $value =~ s/^ (?! \$) /\$/x;
70 DBIx::Class::Storage::DBI::Sybase::NoBindVars - Storage::DBI subclass for Sybase
71 without placeholder support
75 If you're using this driver than your version of Sybase, or the libraries you
76 use to connect to it, do not support placeholders.
78 You can also enable this driver explicitly using:
80 my $schema = SchemaClass->clone;
81 $schema->storage_type('::DBI::Sybase::NoBindVars');
82 $schema->connect($dsn, $user, $pass, \%opts);
84 See the discussion in L<< DBD::Sybase/Using ? Placeholders & bind parameters to
85 $sth->execute >> for details on the pros and cons of using placeholders.
87 One advantage of not using placeholders is that C<select @@identity> will work
88 for obtainging the last insert id of an C<IDENTITY> column, instead of having to
89 do C<select max(col)> in a transaction as the base Sybase driver does.
91 When using this driver, bind variables will be interpolated (properly quoted of
92 course) into the SQL query itself, without using placeholders.
94 The caching of prepared statements is also explicitly disabled, as the
95 interpolation renders it useless.
99 See L<DBIx::Class/CONTRIBUTORS>.
103 You may distribute this code under the same terms as Perl itself.