I'll answer the first question.... ... I'm guessing you just want the data displayed with the most recent at the top (and don't really care how it is logged). ...
It looks like the DBI and DBD packages together have an Oracle interface. use DBI; $dbh = DBI->connect("dbi:Oracle:$dbname", $user, $passwd); $dbh =...
Perl newbie here, so excuse my ignorance. I found the thread on removing the first 10 lines very interesting. I'm trying to do something with multi-line...
I wrote this sub while trying to learn how wantarray worked. It uses a hash of hashes to store and write a ini file. It should get you started. If you need...
I am using ActiveState39;s 5.6 distribution of Perl. I'm writing a Perl program to call InstallShield39;s PackageForTheWeb. Before I call PFTW, I have to modify...
Hey guys-- I'm a total beginner in Perl and was wondering how to implement a session (or a kind of). A friend told me that using cookies is a way. Does anyone...
... Does your cgi script have a use strict in it? Have your tried running the script as a non cgi? Have you looked in the server error logs? Regards Kul...
Hello once again all, I have been assigned a project at work that requires the following. Access a webpage and gather the data from it. From what I ...
... read a line and throw it away. Eg., open(DATA, "< $filename"); <DATA>; # throw first line away while ($line = <DATA>) # process rest of file ... If...
http://acssun.pstcc.cc.tn.us/~cchilder/cst2665/notes/ch7.html This link will take you to a page that has some info on how to take data from html web pages. ......
... From: "Hanson, Mark" <Mark.Hanson@...> ... Oh, sure!? Ask an easy question. :) Last time I checked there were about 580 members on this list; So...
I wanted to know if there is a way to take a string and start at a specific part of the string (line) and go to a specific part and then take off the leading...
Hi, I have a script that writes to a log file like this: open(LOG,">>$logfile"); print LOG "$tries | <b>$name</b> downloaded <b>$filename</b> $logline\n"; ...
Greetings, I'm trying to find an example of a script that will take the contents of a pipe delimited text flat file (potentially very large), and write it into...
"perldoc perlfunc" . Basically the use of "my" is for scoping local variables... ... _________________________________________________________________ Get your...
Not really sure in WinBlows, but in unix land: # perl -MCPAN -e shell cpan> install <module_name> See perldoc CPAN for more info. HTH, Mike ... -- Linux:...
... Seems ok to me, but one thing that may / maynot catch you by surprise is the following: next if $i=~/^\./; # skip the . and the .. files you may want it...
I'm having trouble coming up with a way to do this. I have a directory with multiple files and subdirectories in it. I am only interested in files that have...
Hi Experts.., I have a problem which seems a bit complicated to me. The problem is i have a list of email address, UID Number, FirstName, Surname in a csv file...
... [snip] ... Not exactly -- they will retain those values for the 'duration39; of that sub, meaning that any other subs called from within that one will also...
... Hi Rahul, Try having a look at the Net::FTP manual, there is some quite useful stuff there (FTP.pm) Heres a snippet: NAME Net::FTP - FTP Client class ...
Hello, Could anyone tell me how to connect to a database and get all information about a particular table. Like I want to connect to the oracale database using...
Hi all, Any idea how to use ftp in Windows environment. I want to write a perl script for Windows to ftp a file to/from a Unix machine. Thanks in advance, ...
Greetings, I'm trying to find a PERL script that will read a bunch of text files in a specific directory, look for a substring that varies in each file and...
I've spent the last couple of years building well-known e-commerce sites using Perl, mod_perl, etc. Turns out that a fair amount of my time was spent teaching...
hello: I had wrote a program using in place editing of perl to replace some of the line in a text file. When i tested the code in linux command prompt, the...