new connected() for dbd::sybase users
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / Sybase / Base.pm
1 package DBIx::Class::Storage::DBI::Sybase::Base;
2
3 use strict;
4 use warnings;
5
6 =head1 NAME
7
8 DBIx::Class::Storage::DBI::Sybase::Base - Common functionality for drivers using
9 L<DBD::Sybase>
10
11 =head1 METHODS
12
13 =head2 connected
14
15 Returns true if we have an open (and working) database connection, false if it
16 is not (yet) open (or does not work). (Executes a simple SELECT to make sure it
17 works.)
18
19 The reason this is needed is that L<DBD::Sybase>'s ping() does not work with an
20 active statement handle, leading to masked database errors.
21
22 =cut
23
24 sub connected {
25   my $self = shift;
26
27   my $dbh = $self->_dbh;
28
29   local $dbh->{RaiseError} = 1;
30
31   my $ping_sth;
32
33   eval {
34     my $ping_sth = $dbh->prepare_cached("select 1");
35     $ping_sth->execute;
36     $ping_sth->finish;
37   };
38
39   return $@ ? 0 : 1;
40 }
41
42 1;
43
44 =head1 AUTHORS
45
46 See L<DBIx::Class/CONTRIBUTORS>.
47
48 =head1 LICENSE
49
50 You may distribute this code under the same terms as Perl itself.
51
52 =cut