Re: How and from where to install perl 5.10 on unix (solaris) m/c?

2009-01-14 Thread Ralf Peng
2009/1/15 Sarsamkar, Paryushan : > Hi All, > > > > I would like to install Perl 5.10 on UNIX (Solaris) machine. There is > 5.0 and 5.6 version of Perl on that machine, but it does not have DBI > module that I want. Can anyone please help me in this regard? > rather than installing Perl fully, you

How and from where to install perl 5.10 on unix (solaris) m/c?

2009-01-14 Thread Sarsamkar, Paryushan
Hi All, I would like to install Perl 5.10 on UNIX (Solaris) machine. There is 5.0 and 5.6 version of Perl on that machine, but it does not have DBI module that I want. Can anyone please help me in this regard? Thanks, Paryushan

GD::Graph::bars - multiple x-axis data sets

2009-01-14 Thread Danny Miller
Hi, I've got two sets of data I'm displaying in a bar graph. I'd like to use two different colors for the different data. I'm not sure how to do this. My code looks like: @xdata1; # bunch of x values @ydata1; # bunch of corresponding y values @xdata2; # second set of x values I'd like to plot

RE: need help on perl script

2009-01-14 Thread srinivasa.prasad2
Hi, Myself Srinivasa Prasad, I have a querry for the following scenario: "7. Info web is a portal which provides a full set of collaboration and personalization features for end-users and is easy to use and manage products related to pharmacy industry. Also info web provides the ability t

need help on perl script

2009-01-14 Thread srinivasa.prasad2
Hi, Myself Srinivasa Prasad, I have a querry for the following scenario: "6. Apple is developed for communicating from corporate to the Sales force. It offers downloadable content, portal and portal content as web services. It is content publishing and delivery platform. Apple enables an

RE: need help on perl script

2009-01-14 Thread srinivasa.prasad2
Hi, Myself Srinivasa Prasad, I have a querry for the following scenario: "5. The XX Events Management system is a Web-based application that enables effective Management and marketing of Sports- sponsored events around the world. XX Events enables you to accomplish three primary function

RE: need help on perl script

2009-01-14 Thread srinivasa.prasad2
Hi, Myself Srinivasa Prasad, I have a querry for the following scenario: "4. APRICOT is a marketing application which involves in publishing the data to the databases and then reflected through a User Interface to the end users. The User should be able to login with password and site. Cl

need help on perl script

2009-01-14 Thread srinivasa.prasad2
Hi, Myself Srinivasa Prasad, I have a querry for the following scenario: "3. Create a attendance recording system with swipe details of each employee with employee code and access Number through swipe code recording system. Display the employee Number, Swipe code and the day with time deta

need help on perl script

2009-01-14 Thread srinivasa.prasad2
Hi, Myself Srinivasa Prasad, I have a querry for the following scenario: "2. Retrieve mutual fund NAVs (Net Asset Value) from a variety of online sources where different web sites as to be as input and display the Mutual fund value with NAV." I have to write the perl script for the above s

RE: need help on perl script

2009-01-14 Thread srinivasa.prasad2
Hi Zentara, I would like to thank you for timely response. But when I execute this code it gave lots of compliataion error, I have attached the screen shot. Pls help me to run this code successfully and to get the output. And also wanted to know that do I need to do any pre-requisite procedure be

RE: beginners Digest 15 Jan 2009 04:17:48 -0000 Issue 3649

2009-01-14 Thread srinivasa.prasad2
Hi, Myself Srinivasa Prasad, I have a querry for the following scenario: "1. Retrieve stock prices and market data for stocks traded on the major exchanges, such as the NYSE , NASDAQ.BSE and NSE by accepting the input data like Company code, Company Name, Stock code, Stock Trading Exchange co

Re: Floating point question

2009-01-14 Thread Chas. Owens
On Wed, Jan 14, 2009 at 14:02, Rob Dixon wrote: > Gunnar Hjalmarsson wrote: >> ANJAN PURKAYASTHA answered: >>> ANJAN PURKAYASTHA asked: I would like to divide a floating point number into its whole and fractional parts. So, ($w, $f)= some_subroutine(12.735) assi

Re: Floating point question

2009-01-14 Thread Rob Dixon
Gunnar Hjalmarsson wrote: > ANJAN PURKAYASTHA answered: >> ANJAN PURKAYASTHA asked: >>> >>> I would like to divide a floating point number into its whole and fractional >>> parts. >>> So, >>> ($w, $f)= some_subroutine(12.735) >>> assigns 12 to $w and 0.735 to $f. >>> >>> Any easy perlish way of doi

Re: Floating point question

2009-01-14 Thread ANJAN PURKAYASTHA
yes modf seems to be the best solution. thanks to all for your feedback! anjan On Tue, Jan 13, 2009 at 7:36 PM, Rob Dixon wrote: > ANJAN PURKAYASTHA wrote: > > Owen wrote: > >> ANJAN PURKAYASTHA wrote: > >>> > >>> I would like to divide a floating point number into its whole and > >>> fractional

Re: inverting List::Compare

2009-01-14 Thread Dr.Ruud
Dr.Ruud wrote: John W. Krahn: my @llist = do { open my $fh, '<', $lfile or die "Unable to open '$lfile': $!"; <$fh>; }; Again, especially for biggish files, this is a better way: my @llist; { open my $fh, '<', $lfile or die "'$lfile': $!"; @llist = <$fh>; } Rand