Ich hoffe mal, das das nichts mit meinem anderen Problem zu tun hat. Seit gestern bekomme ich auf der Konsole folgende Warnung:
File 'C:\mysql\share\charsets?.conf' not found (Errcode: 2)
Character set '#5' is not a compiled character set and is not specified in the '
C:\mysql\share\charsets\Index' file
ausreichend dafür ist schon folgender Code:
#!/usr/bin/perl -w
use DBI;
use strict;
my $SQL_USER = "*******";
my $SQL_PWD = "******";
my $SQL_HOST = "*******";
my $DBH = DBI->connect("DBI:mysql:$SQL_HOST", $SQL_USER, $SQL_PWD, { RaiseError => 1 }
) or die $DBI::errstr;
Kann jemand was damit anfangen.
Ach: WinXP,
This is perl, v5.6.0 built for MSWin32-x86-multi-thread
vermutlich DBI 1.34
Struppi.