aboutsummaryrefslogtreecommitdiff
path: root/perl/Wallet/Object
diff options
context:
space:
mode:
authorRuss Allbery <rra@stanford.edu>2007-12-01 03:03:29 +0000
committerRuss Allbery <rra@stanford.edu>2007-12-01 03:03:29 +0000
commit0d517a8c575774387393513ca196aa27211a0b0b (patch)
tree4e81d852771632f21bfe65370d37bd403211d997 /perl/Wallet/Object
parent6bd2cd0824130bd25918e2b709d0991003d5d392 (diff)
Following the DBI documentation, turn on AutoCommit after RaiseError so
that we have some hope of getting error messages if it fails.
Diffstat (limited to 'perl/Wallet/Object')
-rw-r--r--perl/Wallet/Object/Base.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl/Wallet/Object/Base.pm b/perl/Wallet/Object/Base.pm
index 2fe6ed9..bc9fc1e 100644
--- a/perl/Wallet/Object/Base.pm
+++ b/perl/Wallet/Object/Base.pm
@@ -36,9 +36,9 @@ $VERSION = '0.02';
# probably be usable as-is by most object types.
sub new {
my ($class, $type, $name, $dbh) = @_;
- $dbh->{AutoCommit} = 0;
$dbh->{RaiseError} = 1;
$dbh->{PrintError} = 0;
+ $dbh->{AutoCommit} = 0;
my $sql = 'select ob_name from objects where ob_type = ? and ob_name = ?';
my $data = $dbh->selectrow_array ($sql, undef, $type, $name);
$dbh->commit;
@@ -58,9 +58,9 @@ sub new {
# in the object. Subclasses may need to override this to do additional setup.
sub create {
my ($class, $type, $name, $dbh, $user, $host, $time) = @_;
- $dbh->{AutoCommit} = 0;
$dbh->{RaiseError} = 1;
$dbh->{PrintError} = 0;
+ $dbh->{AutoCommit} = 0;
$time ||= time;
die "invalid object type\n" unless $type;
die "invalid object name\n" unless $name;