Dear perlmedian, The goal is to connect to a remote machine, get a 'config39; file from the machine, read that config file and get more files based upon what...
ODBC won't install. I'm using Active State 5.8.0 on NT 4.0 OS If I type: ppm> install Win32::ODBC I get this: Searching for 'Win32::ODBC' returned no results. ...
What is happening when I push onto an array I haven't declared? I thought with 'use strict' you had to use the 'my' operator first. I also thought I had to...
Hello everyone! Can somenone tell me what the following regex means? "(?k:(?k:$_[0])(?k:[^\\n]*)(?k:\\n))" what is the k?? What does it means?? This gives me...
You do not need to have Ocacle on the same machine as the Perl DBD machine. You can install it without any Ocacle software too ... In order for me to install...
In order for me to install Oracle DBD, do I need to have some type of Oracle software running on the machine that I want to install the DBD on? Is it possible...
Hi, I want to extract decimal numbers from a string which contains blanks. There can be 0-2 such numbers inside the string. How to do this? I tried the...
I'm having difficulty in getting the first 3 highest values in a hash, can somebody help me (spending many hours, figuring this out) e.g %hash=( 1=>2, 2=>10, ...
Hi there, i want to work with an Oracle Database. When i was programming in VB i used ODBC. Is there something similar in perl? It would be really nice if...
Just tested from work today The script (I thought was fixed last night) now allows duplicates of subject header tags :-( (same as yahoogroups..) - it SHOULD...
I have a class derived off Net::FTP. My class gets a remote XML file, parses it, and sticks the results in a local member so it can be used from other member...
Well I have a project I want to make better. I need to make a program that can show a tree/web relationship between items. The relationships are easy to...
Hey! Request for XML (really probably basic perl datatypes) understanding. This has the short data, short code and short output, but altogether it gets long....
Dear Jos, Thanks for writing back. I don't think I understand your suggestion. Admittedly, I am a beginner, but this is not what I had expected from reading...
Dear Srik, Pass $resfile to one of these as the second argument. package Mycommon; use strict; use vars qw($VERSION); $VERSION = '0.01'; use MIME::Lite; use...
I found the solution on cpan: $tee->flush(); [http://theoryx5.uwinnipeg.ca/CPAN/data/IO-Tee/Tee.html] I'll make sure I read the perltoot man before posting any...
Hi all, I found the problem (a friend helped me out!) - I use the IO:Tee module as : $tee = IO::Tee->new ( ">$resfile", ">&1"); And when I try to do something...
Greetings, Mongers! The following code refuses to mail the contents of $resfile to me : if (defined $ARGV[1]) { print "\nDiag:To check if resfile is still...
Req No SSAI-Saudi-26062003-Req1650 Must have skills Perl, Java and Java Scripts Programming experience. Oracle DB development experience. Web Development...
Req No SSAI-Saudi-26062003-Req1650 Must have skills Perl, Java and Java Scripts Programming experience. Oracle DB development experience. Web Development...
Hi All, I need to remove all the \n from a string. I have been trying: $string = s/\n/ /g; However, this seem to not to return anything. Any suggestions? ...
... <snip> ... But, if you expect the Perl script to change your directory for your current shell session, you're going to have to try something different. The...
I need to be able to emulate a web browser. What I need is to be able to hit a certain web page from perl, read the response and use that response in any way....
Hi there, i'm supposed to write a program for creating a windrose...although i have no idea how to do that. i have worked a bit with the module GD::Graph, but...
Hi all : Could anyone tell me how I could move between the directories ( or change the present working directory ) with any perl command ?? I have tried these...