X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/9466e9e0f60af5142b7afbdea1e17b3313881201..64b49f6c38c2c5763f21df00c7b4580ff70893be:/SL/DBUpgrade2/Base.pm
diff --git a/SL/DBUpgrade2/Base.pm b/SL/DBUpgrade2/Base.pm
index 09e4e5fff..6f0bb829c 100644
--- a/SL/DBUpgrade2/Base.pm
+++ b/SL/DBUpgrade2/Base.pm
@@ -5,6 +5,7 @@ use strict;
use parent qw(Rose::Object);
use Carp;
+use Encode;
use English qw(-no_match_vars);
use File::Basename ();
use File::Copy ();
@@ -37,18 +38,28 @@ sub execute_script {
sub db_error {
my ($self, $msg) = @_;
- die $::locale->text("Database update error:") . "
$msg
" . $DBI::errstr;
+ die $::locale->text("Database update error:") . "
$msg
" . $self->db_errstr('DBI');
}
sub db_query {
- my ($self, $query, $may_fail) = @_;
+ my ($self, $query, %params) = @_;
- return if $self->dbh->do($query);
+ my $dbh = $params{dbh} || $self->dbh;
- $self->db_error($query) unless $may_fail;
+ return if $dbh->do($query, undef, @{ $params{bind} || [] });
- $self->dbh->rollback;
- $self->dbh->begin_work;
+ $self->db_error($query) unless $params{may_fail};
+
+ $dbh->rollback;
+ $dbh->begin_work;
+}
+
+sub db_errstr {
+ my ($self, $handle) = @_;
+
+ my $error = $handle ? $handle->errstr : $self->dbh->errstr;
+
+ return Encode::decode('utf-8', $error);
}
sub check_coa {
@@ -108,6 +119,24 @@ sub add_print_templates {
return 1;
}
+sub drop_constraints {
+ my ($self, %params) = @_;
+
+ croak "Missing parameter 'table'" unless $params{table};
+ $params{type} ||= 'FOREIGN KEY';
+ $params{schema} ||= 'public';
+
+ my $constraints = $self->dbh->selectall_arrayref(<db_query(qq|ALTER TABLE auth."$params{table}" DROP CONSTRAINT "${_}"|) for map { $_->[0] } @{ $constraints };
+}
+
1;
__END__
@@ -204,13 +233,64 @@ C<$coa_name>.
Outputs an error message C<$message> to the user and aborts execution.
-=item C
+=item C
+
+Executes an SQL query. The following parameters are supported:
+
+=over 2
+
+=item C
+
+What the method does if the query fails depends on this parameter. If
+it is falsish (the default) then the method will simply die outputting
+the error message via L. If C is trueish then the
+current transaction will be rolled back, a new one will be started.
+
+=item C
+
+An optional array reference containing bind parameter for the query.
+
+=item C
+
+The database handle to use. If undefined then C<$self-Edbh> will
+be used.
-Executes an SQL query. What the method does if the query fails depends
-on C<$may_fail>. If it is falsish then the method will simply die
-outputting the error message via L. If C<$may_fail> is
-trueish then the current transaction will be rolled back, a new one
-will be started
+=back
+
+=item C
+
+Returns the last database from C<$handle> error message encoded in
+Perl's internal encoding. The PostgreSQL DBD leaves the UTF-8 flag off
+for error messages even if the C attribute is set.
+
+C<$handle> is optional and can be one of three things:
+
+=over 2
+
+=item 1. A database or statement handle. In that case
+C<$handle-Eerrstr> is used.
+
+=item 2. The string 'DBI'. In that case C<$DBI::errstr> is used.
+
+=item 3. If it is undefined then C<$self-Edbh-Eerrstr> is
+used.
+
+=back
+
+=item C
+
+Drops all constraints of a type (e.g. foreign keys) on a table. One
+parameter is mandatory: C. Optional parameters include:
+
+=over 2
+
+=item * C -- if missing defaults to C
+
+=item * C -- if missing defaults to C. Must be one of
+the values contained in the C
+view in the C column.
+
+=back
=item C