I need a sample for how to create and object of a class in perl. Pass this object to another class
Explanation
====
main code
=======
#!/usr/bin/perl
use utility;
use blobManage;
...
Hello, I have a CSV file with 5 columns of data (N number of rows) in the following format:
Descr, Name, X, Y, Z (where Descr values are all unique from each other .. another words, column 1...
I have a search results page where the search_results.cgi is an include in search_resutls.shtml.
This way the results get printed out in a nicely formatted page. (I did not write it, I am jus...
I'm trying to open a file, check the file to see if it contains stuff that I am about to write (if it does, don't write the new stuff), then write/append to this file.
I'm using the +>> ope...
My sql table looks like this
username value1 value 2 value 3
My perl program o/p is
$username --> test (always remain same)
$value= 1 , 2 , 3 , 4 , 5 (different o/p which ...
Hi,
Once our company found out that one of the port scanners we use to feed into ISS' vulnerability scanner required a different license, I was asked if I could write one. I did manage to wri...
I need to keep this ultra simple and ultra short. I want to be able to remotely access a webpage with info on the installed Perl on IIS 6.0 running on 2003 Server. I just want to send the hy...
I've got a .txt file similar to the one below, except mine has thousands of blocks similar to the ones shown.
My goal is to find all of the 172.* entries that are NOT of a particular MAC ty...
Hi folks
I want to update a bunch of files in a folder so that none of them start with numbers. The files names currently use this format: "0001-File-A.doc", "0002-File-B.doc", etc.
What...
When I using split on a dot separated file. It adds white spaces to the word in the line. How do I remove that? Please advise.
Hi,
I have built a %HoA and i want to start extracting bits from individual arrays and I'm not sure how to do it.
I can print each line of a particular array...
my $c = 0;
while ($HoA{'Sys...
the script below is sent from a cron job from the shell.
(the purpose is to check every X minutes to see if a provider is blocking email from our server)
I want to specify the true FROM addr...
I need to define $logintime at the top of the script, define it at login, then access it in a sub script but it's not working? Please help!
Hi ,
I need help in writing perl script to compare two databases .
Sql to puit inside is simple:
select count(*) from vtest .
Can some one help me .thanks,
gyans .
I need some assistance in getting a file from an sftp server. I get files from various different servers and I use a variety of "get" methods for retrieving the files. I have successfully been...
I am trying to set up a basic Contact Us form using the formmail.pl script on one of my websites. However, I keep getting internal server errors returned when trying to test the form on the ...
Hello,
I'm a new Perl programmer and I'm using the Win32::API module to use functions of a C dll.
I'm using ActivePerl 5.8.8.
Here is the C code of the function I need to use:
const ch...
When I trying to parse excel using the Perl module Spreadsheet::ParseExcel I am getting this error:
Error PPS:0 oot EntryÿÿÿÿÿÿÿÿÀFªú²È®È-§¦¯È1W
Not sure why. Please advise. I ftp the file...
I am trying to execute a shell script which is giving me the following error.
system ksh check_xmlExtracts.ksh client638 source cl638 failed: 256 at run_dcm_scripts.pl line 12, <FH> line 1.
...
I'm following up on my previous question
http://www.experts-exchange.com/Programming/Languages/Scripting/Perl/Q_23428010.html#a21635922
since the solution still has some problems.
I'm...
I need get the value of both element value in perl, how do i do it???
End Result I should have:
123456789
abcdefghi
I need to find out what perl verion is running on a machine, which i can find doing
perl -v, but this shows me This is perl, v5.6.0 built for MSWin32-x86. All I want is v5.6.0. Can anyone pr...
Hi,
I need to find some computers on my network which has about 200. Basically I want to list the ones active.
any idea.
thanks,
I am getting the error:
ORA-03134: Connections to this server version are no longer supported. (DBD ERROR: OCISessionBegin) at dbaccess.pl line 92.
Using DBI to connect to Oracle 8i database...
Hi,
I'm trying to write a function which will search a table within Oracle for various columns when certain parameters are met. It works just fine when I use numeric search criteria but as ...