Re: Regex Help

2003-08-01 Thread ss004b3324
Hi, I have a number of strings, in the following format: A deep resonant "ooh-hu" with emphasis on the first syllable. from which I wish to extract the following part of the string using a regex: ooh-hu I have been trying to no avail - and would very much appreciate some help with this problem. T

RE: What driver to use with DBI for access 97

2002-11-07 Thread ss004b3324
Hi Chris, > Just getting started trying to pull some data from a fairly simple access > 97 database. What driver do I need to use to connect in this string.. > > my $dbh = DBI->connect('DBI:?:framestats.mdb'); Connecting to an Access database on my box: my $dbh = DBI->connect( "dbi:ODBC:Stud

RE: explicit package name errors

2002-11-06 Thread ss004b3324
Hi Shaunn, > my $sql="SELECT > name, > tbname > from sysibm.syscolumns > where tbname = 'local_table'; --^ You forgot the closing double quotes. You either need to have the query all on one line or concatenate it: my $sql = ( "SELECT name, tbname FROM sysibm.syscolumn

RE: perl modules for NT

2002-11-05 Thread ss004b3324
Hi Shaunn, I am running W2K SP3 and it installs OK. > pmm>install DBD-Oracle PPM> install dbd::oracle Install package 'dbd-oracle?' (y/N): y Installing package 'dbd-oracle'... Bytes transferred: 92963 Installing C:\Perl\site\lib\auto\DBD\Oracle\Oracle.bs Installing C:\Perl\site\lib\auto\DBD\Oracle

RE: Testing for hidden or system files

2002-10-27 Thread ss004b3324
Hi, > Does anyone know how to test for a hidden or system file under Windows > 95/2000? This works: use strict; use Win32::File; my $attr; my $file = 'C:\Perl\Scripts\test.txt'; Win32::File::GetAttributes($file,$attr ); if ($attr & HIDDEN || $attr & SYSTEM) { print "$file attributes are: $at

RE: PPM3 - libwww-perl

2002-07-03 Thread ss004b3324
Hi, > download? ActiveState only has a limited module repository. > > http://www.activestate.com/PPMPackages/5.6plus/ Try: http://www.activestate.com/PPMPackages/zips/6xx-builds-only/ There is: Tuesday, January 02, 2001 7:36 PM 565993 libwww-perl.zip Hth, Shaun --- Outgoing mail is ce

RE: text editors

2002-03-08 Thread ss004b3324
> Speaking of text editors, anyone know of a good one that has > line #ing > for W2K? Free, of course (I am a student). Syn - line numbering and lots more: http://web.utanet.at/ascherst/syn/index.html Shaun --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.

RE: wildcard for unix????

2002-02-03 Thread ss004b3324
> What is the global wildcard for unix? > I'm trying to chmod 755 all files in a dir... possible? > chmod 755 *.* ? chmod 755 * <- for all files chmod 755 *pl <- for all files with a .pl extension chmod -R 755 * <- all files and recursively through all sub-directories Shaun --- Outgoing m

RE: nmake error

2002-01-30 Thread ss004b3324
> Upon trying to install Win32 SystemInfo 0.06, I receive the > following error > upon executing nmake (the second step of the install): > > NMAKE: fatal error U1073: don't know how to make 'C:\Program' > Stop. I think you will find the is breaking on the directory specification: C:\Program Files\

RE: Cgi on IIS

2002-01-19 Thread ss004b3324
Hi Maureen, > I set up this cgi file and html form on a Unix server. The script > changes a user's password in a text file. > > This works correctly on a Unix Server. However, I need to move these > files to an IIS server. > In testing on the IIS server, I get an HTTP Error 405- Method not > all

RE: Line Numbers and...

2002-01-12 Thread ss004b3324
Gary Hawkins wrote: > navigation is slow, etc. There is probably a Windows port of vi, > but I prefer Notepad. Get yourself a copy of syn from: http://www.webattack.com/get/syn.shtml Extract from the About: This Program is a Fileeditor with Syntaxhighlight support for over 30 different Language

RE: Reference problem

2002-01-06 Thread ss004b3324
> Robert Thompson wrote: > #!/usr/bin/perl > > @one_list = qw(1 2 3 4); > @two_list = qw(5 6 7 8); > @three_list = qw(9 10 11 12); > @four_list = qw(13 14 15 16); > > foreach my $array (qw(one two three four)) { > foreach my $num ( @{$array}_list ) { <== Break here > print $array . "_" . $