6 Einträge, 1 Seite |
1
2
3
4
5
6
The optional PlRPC-modules (RPC::PlServer etc) are not installed.
If you want to use the DBD::Proxy driver and DBI::ProxyServer
modules, then you'll need to install the RPC::PlServer, RPC::PlClient,
Storable and Net::Daemon modules. The CPAN Bundle::DBI may help you.
You can install them any time after installing the DBI.
You do *not* need these modules for typical DBI usage.
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
6 Einträge, 1 Seite |