Thread Überprüfen ob Verbindung zur Datenbank besteht (6 answers)
Opened by Gast at 2004-03-04 14:55

Robby
 2004-03-04 14:59
#80573 #80573
User since
2003-08-11
409 Artikel
BenutzerIn
[default_avatar]
so:

Code: (dl )
1
2
3
4
5
6
7
8
9
my $connection_check = DBI->connect( 'DBI:Oracle:'.$current_db, $current_user, $current_password, { RaiseError=> 0, PrintError => 0, AutoCommit => 0 } );
if ( defined $connection_check)
{
print "Verbindung OK";
}
else
{
print "Verbindung NICHT OK";
}
Kaum macht man es richtig - schon funktioniert es!

View full thread Überprüfen ob Verbindung zur Datenbank besteht