Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

lorn's scratchpad

by lorn (Monk)
on Nov 18, 2005 at 20:30 UTC ( [id://509943]=scratchpad: print w/replies, xml ) Need Help??

# test oracle connection with DBI

use strict; use warnings; use DBI; my $host = '192.168.0.1'; my $driver = 'Oracle'; my $database = 'ORCL'; my $username = 'USER'; my $password = 'PASS'; my $dbh = DBI->connect("dbi:Oracle:host=$host;sid=$database", $usernam +e, $password, {RaiseError => 1, AutoCommit => 0});

# a simple telnet client with SMTP server

use strict; use warnings; use Net::Telnet (); my $t = new Net::Telnet (Timeout => 10, Port => 25); $t->open("192.168.0.25"); my $foo = $t->getline; print $foo; $t->print("HELO darkstar"); $foo = $t->getline; print $foo;
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (2)
As of 2024-04-20 03:24 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found