2007fld has asked for the wisdom of the Perl Monks concerning the following question:
#!/perl/bin/perl
........
use DBI;
my $dbh = DBI->connect
( 'dbi:Oracle:host=xx.xx.xx.xxx;sid=xxx',
'name',
'password',
)
.....
my $info = "insert into table1 values('$user','$filename','$filesize','$time','$direction')";
my $sth = $dbh->prepare($info);
$sth->execute();
$dbh->commit();
.....
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Perl connects/writes to Oracle using Oracle encrypted link
by dHarry (Abbot) on Aug 22, 2008 at 15:13 UTC | |
by massa (Hermit) on Aug 22, 2008 at 16:12 UTC | |
|
Re: Perl connects/writes to Oracle using Oracle encrypted link
by massa (Hermit) on Aug 22, 2008 at 16:24 UTC |