johnkeis a5ffdc25f4 Initial Revision
git-svn-id: svn://10.0.0.236/trunk@135256 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 19:43:18 +00:00

16 lines
264 B
Perl

package Tinderbox3::DB;
use strict;
use DBI;
require Exporter;
our @ISA = qw(Exporter);
our @EXPORT = qw(get_dbh);
sub get_dbh {
my $dbh = DBI->connect("dbi:Pg:dbname=tbox", "jkeiser", "scuttlebutt", { RaiseError => 1, AutoCommit => 0 });
return $dbh;
}
1