Skip to content

Commit

Permalink
change RaiseError default back to 0
Browse files Browse the repository at this point in the history
  • Loading branch information
moritz committed Apr 23, 2012
1 parent 5b5859f commit 51548e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/MiniDBI.pm6
Expand Up @@ -3,7 +3,7 @@
class MiniDBI:auth<mberends>:ver<0.1.0> {
has $!err;
has $!errstr;
method connect($driver, :$RaiseError=1, :$PrintError=0, :$AutoCommit=1, *%opts ) {
method connect($driver, :$RaiseError=0, :$PrintError=0, :$AutoCommit=1, *%opts ) {
my $d = self.install_driver( $driver );
# warn "calling MiniDBD::" ~ $drivername ~ ".connect($username,*,$params)";
my $connection = $d.connect(:$RaiseError, :$PrintError, :$AutoCommit, |%opts );
Expand Down

0 comments on commit 51548e3

Please sign in to comment.