comparing arrays

2012-01-11 Thread Chris Stinemetz
I have a script where I have captured the value on the left side of the = as the header for my table. Now I want to take the value on the right side of the = sign and populate a new row in table format where the header value I stored in the @header array matches the value on the left side of the =

Some UTF-8-related questions

2012-01-11 Thread Hamann, T.D. (Thomas)
Hi, Thanks for the answers on my last question. I have since then dug a bit further in the UTF-8-related error message I got, and after some reading have a few questions with regards to UTF-8 handling in perl: (Please bear in mind that I am not an IT guy) 1a) My use statements are the

Re: Some UTF-8-related questions

2012-01-11 Thread Brian Fraser
On Wed, Jan 11, 2012 at 7:59 AM, Hamann, T.D. (Thomas) ham...@nhn.leidenuniv.nl wrote: Hi, Thanks for the answers on my last question. I have since then dug a bit further in the UTF-8-related error message I got, and after some reading have a few questions with regards to UTF-8 handling in

perl DBI n00b

2012-01-11 Thread Mark Haney
I'm pretty new to the perl DBI world, so can someone point me to a good tutorial/reference site or book or something? I'm very proficient with databases and pretty good with basic perl, but not used together. Any help would be appreciated. -- To unsubscribe, e-mail:

Re: perl DBI n00b

2012-01-11 Thread Natal Ngétal
Le 11 janv. 2012 15:59, Mark Haney ma...@abemblem.com a écrit : I'm pretty new to the perl DBI world, so can someone point me to a good tutorial/reference site or book or something? I'm very proficient with databases and pretty good with basic perl, but not used together. Any help would be

RE: Some UTF-8-related questions

2012-01-11 Thread Hamann, T.D. (Thomas)
Hi, Thanks for the answers on my last question. I have since then dug a bit further in the UTF-8-related error message I got, and after some reading have a few questions with regards to UTF-8 handling in perl: (Please bear in mind that I am not an IT guy) Worry not -- Basically no IT person

Re: comparing arrays

2012-01-11 Thread Chris Charley
Chris Stinemetz wrote in message news:ca+hbpzhw7scz2dnabxd0j1bqfcj3vpo7xm_dvrbqmpwrnul...@mail.gmail.com... I have a script where I have captured the value on the left side of the = as the header for my table. Now I want to take the value on the right side of the = sign and populate a new

Re: comparing arrays

2012-01-11 Thread Jim Gibson
At 4:13 AM -0600 1/11/12, Chris Stinemetz wrote: I have a script where I have captured the value on the left side of the = as the header for my table. Now I want to take the value on the right side of the = sign and populate a new row in table format where the header value I stored in the

Re: perl DBI n00b

2012-01-11 Thread pengyh
The doucument for DBI on CPAN is excellent. Or you may look at this thread: http://www.perlmonks.org/?node_id=22050 -Ursprüngliche Nachricht- Von: Mark Haney ma...@abemblem.com Gesendet: 2012-1-11 15:58:30 An: beginners@perl.org beginners@perl.org Betreff: perl DBI n00b I'm pretty new

RE: working with large integers

2012-01-11 Thread Kronheim, David (Contr)
Hi Tim: I don't trust picking off the first or last 10 digits, without using BigInt. Without BigInt, Perl will give a sum with your code but, the digits in the answer will be different. Frequently I find using examples based on texts easier than CPAN documentation. The subroutine I got from

Re: comparing arrays

2012-01-11 Thread Jeff Peng
Just from the subject, for comparing arrays, I have been using Array::Diff which works always fine for me. I have a script where I have captured the value on the left side of the = as the header for my table. Now I want to take the value on the right side of the = sign and populate a new row