/[webpac]/trunk/index_DBI_cache.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/index_DBI_cache.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 201 by dpavlin, Sat Jan 17 14:00:26 2004 UTC revision 206 by dpavlin, Sat Jan 31 20:57:48 2004 UTC
# Line 44  sub new { Line 44  sub new {
44          my $user = shift || die "need dbi_user= in [global] section of configuration file";          my $user = shift || die "need dbi_user= in [global] section of configuration file";
45          my $passwd = shift || die "need dbi_passwd= in [global] section of configuration file";          my $passwd = shift || die "need dbi_passwd= in [global] section of configuration file";
46    
47            $self->{dbd} = $dbd;
48    
49          $self->{dbh} = DBI->connect("DBI:$dbd:$dsn",$user,$passwd) || die $DBI::errstr;          $self->{dbh} = DBI->connect("DBI:$dbd:$dsn",$user,$passwd) || die $DBI::errstr;
50          $Count++;          $Count++;
51    
# Line 211  sub close { Line 213  sub close {
213    
214                  $self->{dbh}->commit || die $self->{dbh}->errstr();                  $self->{dbh}->commit || die $self->{dbh}->errstr();
215          }          }
216    
217            if ($self->{dbd} =~ m/(Pg|SQLite)/) {
218                    $self->{dbh}->do(qq{vacuum}) || warn "vacumming failed. It shouldn't if you are using PostgreSQL or SQLite: ".$self->{dbh}->errstr();
219            }
220    
221          $self->bench("disconnecting from database");          $self->bench("disconnecting from database");
222    
223          $self->{dbh}->disconnect;          $self->{dbh}->disconnect;

Legend:
Removed from v.201  
changed lines
  Added in v.206

  ViewVC Help
Powered by ViewVC 1.1.26