Re: Beginner question

2005-03-26 Thread David Kirol
Kyle Lampe wrote: Hello! Hi I've got a quick perl question for you. I'm writing a script that compares two xml files, ignoring one certain tag. The problem I have is I want to get the output from two files simultaneously. What I'm trying is: while ( $lineFile1 = && $lineFile2 = ) { try: while (

Warnings about sub redefinitions

2004-06-04 Thread David Kirol
Hello! I have finally been able to compile perl from sources on this winnt box using msys, mingw and a heaping helping of determination. I wanted to be free of ActiveState Perl (ASPerl is a great resource - just not what I wanted) so that I was not dependent on 'precompiled binaries' for modules li

Re: Confused about supplying command line arguments and using @ARGV

2004-06-04 Thread David Kirol
ActiveState on windoze requires some 'extra fiddling' to get the command line params to actually make it into @ARGV On my winnt box I followed the directions ActiveState provided under 'Windows Quirks' under the getting started section Basicall you modify the .pl file extension from {full path to p

Re: Error in Script

2004-04-05 Thread David Kirol
You'll need to fix this also > ($str1,$str2) = split(/./, $filetoopen); It should be: ($str1,$str2) = split(/\./, $filetoopen); So that split can funcrion as you expect. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Oracle sequences

2002-04-10 Thread David Kirol
my $sql = "SELECT net_seq.nextval FROM dual"; HTH -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 10, 2002 9:25 AM To: [EMAIL PROTECTED] Subject: Oracle sequences Hi all I'm attempting to load an oracle database and am struggling with how to

@INC

2001-12-28 Thread David Kirol
Hi All, This is one of those posts: 'How would I do this if I were a real perl programmer...' First, the problem. Windoz NT with Apache server (windoze version) and cygwin with perl 5.6.1 (NOT activestate). Apache is configured for CGI and perl can find CGI.pm in cygwin and windoz shell b

finding text in a gif image

2001-10-20 Thread David Kirol
Hi All, I need a way to extract the text portion from a .gif image of the type attached. Any ideas? David begin 666 KBOX_latest_0.gif M1TE&.#=A; )L`O<``/___YF9F?_OVV"@H"]/3]/3TW1T=*FIJ3-55;G6 MUG*?_\37_SY7C&&'V;^_O^3DY&=G9Z*BHOH30/_DW/\```#_``#_ M__\`_XM')O^"1_^E3_^NN?]J

Re: DBI connect method dumps core

2001-07-31 Thread David Kirol
Just in case anybody else runs into this problem. It turns out the machine I am working on has multiple OracleHomes. Using the oracle tool to switch to the home where the database lives solved this problem (I made ora8i the Primary home). "David Kirol" <[EMAIL PROTECTED]> wrote i

DBI connect method dumps core

2001-07-26 Thread David Kirol
I'm using Activestate perl build 626, DBD-Oracle8 1.06 DBI 1.14 on WInNt with intel. I loaded all prebuilt binaries. The good stuff on my machine is hiding in Cygwin. When I try to connect to a local Oracle 8.1.5 instance DrWatson pops up and blames perl for an access violation. Short of convertin