X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FSchema%2FLoader%2FDBI%2FSybase.pm;h=cfcd57b9df8ec5a3b59aa80c5584b1bbe6d8932d;hb=1fa1884903b09903ce89a3814e41bac9e91eea9d;hp=7b3ec3da52361e588b1809d5b9736c6ba232c7e9;hpb=0852b7b82a006837d0a0318db2fa8b335180d8ba;p=dbsrgits%2FDBIx-Class-Schema-Loader.git diff --git a/lib/DBIx/Class/Schema/Loader/DBI/Sybase.pm b/lib/DBIx/Class/Schema/Loader/DBI/Sybase.pm index 7b3ec3d..cfcd57b 100644 --- a/lib/DBIx/Class/Schema/Loader/DBI/Sybase.pm +++ b/lib/DBIx/Class/Schema/Loader/DBI/Sybase.pm @@ -9,7 +9,7 @@ use base qw/ use Carp::Clan qw/^DBIx::Class/; use Class::C3; -our $VERSION = '0.04999_06'; +our $VERSION = '0.04999_13'; =head1 NAME @@ -46,7 +46,8 @@ sub _rebless { my $dbh = $self->schema->storage->dbh; my $DBMS_VERSION = @{$dbh->selectrow_arrayref(qq{sp_server_info \@attribute_id=1})}[2]; if ($DBMS_VERSION =~ /^Microsoft /i) { - my $subclass = 'DBIx::Class::Schema::Loader::DBI::MSSQL'; + $DBMS_VERSION =~ s/\s/_/g; + my $subclass = "DBIx::Class::Schema::Loader::DBI::Sybase::$DBMS_VERSION"; if ($self->load_optional_class($subclass) && !$self->isa($subclass)) { bless $self, $subclass; $self->_rebless; @@ -58,7 +59,7 @@ sub _table_columns { my ($self, $table) = @_; my $dbh = $self->schema->storage->dbh; - my $columns = $dbh->selectcol_arrayref(qq{SELECT name FROM syscolumns WHERE id = (SELECT id FROM sysobjects WHERE name = '$table' AND type = 'U')}); + my $columns = $dbh->selectcol_arrayref(qq{SELECT name FROM syscolumns WHERE id = (SELECT id FROM sysobjects WHERE name = @{[ $dbh->quote($table) ]} AND type = 'U')}); return $columns; } @@ -67,7 +68,7 @@ sub _table_pk_info { my ($self, $table) = @_; my $dbh = $self->schema->storage->dbh; - my $sth = $dbh->prepare(qq{sp_pkeys '$table'}); + my $sth = $dbh->prepare(qq{sp_pkeys @{[ $dbh->quote($table) ]}}); $sth->execute; my @keydata; @@ -88,7 +89,7 @@ sub _table_fk_info { local $dbh->{FetchHashKeyName} = 'NAME_lc'; # hide "Object does not exist in this database." when trying to fetch fkeys local $dbh->{syb_err_handler} = sub { return $_[0] == 17461 ? 0 : 1 }; - my $sth = $dbh->prepare(qq{sp_fkeys \@fktable_name = '$table'}); + my $sth = $dbh->prepare(qq{sp_fkeys \@fktable_name = @{[ $dbh->quote($table) ]}}); $sth->execute; my $row = $sth->fetchrow_hashref; @@ -111,7 +112,7 @@ sub _table_fk_info_by_name { local $dbh->{FetchHashKeyName} = 'NAME_lc'; # hide "Object does not exist in this database." when trying to fetch fkeys local $dbh->{syb_err_handler} = sub { return $_[0] == 17461 ? 0 : 1 }; - my $sth = $dbh->prepare(qq{sp_fkeys \@fktable_name = '$table'}); + my $sth = $dbh->prepare(qq{sp_fkeys \@fktable_name = @{[ $dbh->quote($table) ]}}); $sth->execute; while (my $row = $sth->fetchrow_hashref) { @@ -141,7 +142,7 @@ sub _table_fk_info_builder { local $dbh->{FetchHashKeyName} = 'NAME_lc'; # hide "Object does not exist in this database." when trying to fetch fkeys local $dbh->{syb_err_handler} = sub { return 0 if $_[0] == 17461; }; - my $sth = $dbh->prepare(qq{sp_fkeys \@fktable_name = '$table'}); + my $sth = $dbh->prepare(qq{sp_fkeys \@fktable_name = @{[ $dbh->quote($table) ]}}); $sth->execute; my @fk_info; @@ -198,7 +199,7 @@ sub _table_uniq_info { my $dbh = $self->schema->storage->dbh; local $dbh->{FetchHashKeyName} = 'NAME_lc'; - my $sth = $dbh->prepare(qq{sp_helpconstraint \@objname='$table', \@nomsg='nomsg'}); + my $sth = $dbh->prepare(qq{sp_helpconstraint \@objname=@{[ $dbh->quote($table) ]}, \@nomsg='nomsg'}); eval { $sth->execute }; return if $@; @@ -233,7 +234,7 @@ sub _extra_column_info { my ($table, $column) = @$info{qw/TABLE_NAME COLUMN_NAME/}; my $dbh = $self->schema->storage->dbh; - my $sth = $dbh->prepare(qq{SELECT name FROM syscolumns WHERE id = (SELECT id FROM sysobjects WHERE name = '$table') AND (status & 0x80) = 0x80 AND name = '$column'}); + my $sth = $dbh->prepare(qq{SELECT name FROM syscolumns WHERE id = (SELECT id FROM sysobjects WHERE name = @{[ $dbh->quote($table) ]}) AND (status & 0x80) = 0x80 AND name = @{[ $dbh->quote($column) ]}}); $sth->execute(); if ($sth->fetchrow_array) { @@ -250,11 +251,12 @@ L =head1 AUTHOR -Justin Hunter C +See L and L. -=head1 CONTRIBUTORS +=head1 LICENSE -Rafael Kitover +This library is free software; you can redistribute it and/or modify it under +the same terms as Perl itself. =cut