Thread DBD::Proxy benutzen (8 answers)
Opened by dax42 at 2004-06-22 14:22

dax42
 2004-06-22 14:22
#32305 #32305
User since
2004-06-16
24 Artikel
BenutzerIn
[default_avatar]
Hallo,

endlich habe ich es geschafft, alles, was man zum Gebrauch von DBD::Proxy benötigt, zu installieren. Nun wollte ich folgendes probieren:

Code: (dl )
1
2
3
4
5
6
7
8
9
use DBI;

$user="user";
$passwd="passwd";
$port=1521;
$host="host.blah.de";
$db='DBS';

$dbh = DBI->connect("dbi:Proxy:hostname=$host;port=$port;dsn=$db",$user, $passwd);


Und erhalte folgenden Fehler:

Code: (dl )
1
2
DBI connect('hostname=host.blah.de;port=1521;dsn=DBS','user',...) failed: Cannot log in to DBI::ProxyServer: Unexpected EOF from server at /Library/Perl/5.8.1/RPC/PlClient.pm line 84.
at connecttest.pl line 11


Was ist da schief gelaufen? Liegt es tatsächlich an PlClient, den ich ja gerade ohne Probleme installiert habe, oder habe ich in meinem Skript etwas falsch gemacht?

Danke schon mal!!

View full thread DBD::Proxy benutzen