Thread DBI-Problem:MySQL-Verbindung bricht automatisch ab (12 answers)
Opened by Gast at 2004-04-12 04:26

Gast Gast
 2004-04-17 16:27
#32020 #32020
Hallo DieterW,

db-connect mach ich immer so:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
sub mysql_connect {
   my $dbh = DBI->connect(
"dbi:mysql:database=$config{'db_name'}:host=localhost",
   $config{'dbuser'},
   $config{'dbpwd'},
{
   PrintError => 0,
   RaiseError => 1,
   LongReadLen => $config{'LongReadLen'},
   LongTruncOk => 0
}
   ) or oops($DBI::errstr);
   
   return $dbh;
}


dann hat sich das Doppel-Quoting auch erledigt.

Gruß
Dieter

View full thread DBI-Problem:MySQL-Verbindung bricht automatisch ab