9 Einträge, 1 Seite |
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);
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
9 Einträge, 1 Seite |