Search the web
Sign In
New User? Sign Up
perl-beginner · Perl Beginners Mailing List
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1 - 30 of 26724   Newest  |  < Newer  |  Older >  |  Oldest
Messages: Show Message Summaries   (Group by Topic) Sort by Date v  
#30 From: "pang khong lin" <klpang@...>
Date: Tue Sep 1, 1998 8:23 pm
Subject: [PBML] something to do with require . .
klpang@...
Send Email Send Email
 
this is part of the contents for test.pl

$REQUIRE_DIR="c:\\taform\\cgi-bin\\";
push(@INC,$REQUIRE_DIR) if $REQUIRE_DIR;
require 'test2.pl';
sub1();
and so on . . .

this is part of the contents for test.pl

sub sub1    {
     print "firstvar=$firstvar";
     print "secondvar=$secondvar";
     my($firstvar)=1;
     local($secondvar)=2;
     print "firstvar=$firstvar";
     print "secondvar=$secondvar";
}

basically what i want to try out is the scope of variables using 'my'
and 'local' and whether they behave the same when the subroutine is in
the same program and when the subroutines are in separate files( which
will then require us to use -> require 'filename'; )

The problem is when the program reaches line 3 of test.pl the following
mess. appears :-

test2.pl did not return a true value at test.pl line3. <IN> chunk 3

and the program stops.

i have make sure that path is correct and i had even omit the value of
$REQUIRE_DIR since both of the file is in the same dir.

thanks in advance.


______________________________________________________

____________________________________________________________________

List Site: http://www.findmail.com/list/perl-beginner/
To unsubscribe, send to perl-beginner-unsubscribe@...

FREE group e-mail lists at http://www.findmail.com

#29 From: jboes@... (Jeff Boes)
Date: Thu Aug 27, 1998 11:55 pm
Subject: Re: [PBML] how to read POD-Files
jboes@...
Send Email Send Email
 
On Thu, 27 Aug 1998 13:29:22 +0100, HaraldWolf@... (Harald Wolf) wrote:

>what is POD ?  Which (Win32)-Application do i have to use if i want to
>read POD-Files ???

POD: "plain old documentation".  It's a means of bundling module documentation
in the source code (where it stands some chance of getting updated whenever the
code does!). You can view this documentation with 'perldoc'. For starters, try:

$ perldoc perldoc

If your O/S complains about 'perldoc' missing, then you may have to hunt for
'perldoc' wherever you keep 'perl'.

When you've digested that, try:

$ perldoc perlpod



--
~~~~~~~~~~~~~~~~|Fare Thee well now, let your
Jeffery Boes    |life proceed by its own design.
jboes@...   |Nothing to tell now, let your
UIN 3394914     |words be yours, I'm done with mine...

____________________________________________________________
List Site: http://www.findmail.com/list/perl-beginner/
To unsubscribe, send to perl-beginner-unsubscribe@...

FREE group e-mail lists at http://www.findmail.com

#28 From: HaraldWolf@... (Harald Wolf)
Date: Thu Aug 27, 1998 12:29 pm
Subject: [PBML] how to read POD-Files
HaraldWolf@...
Send Email Send Email
 
Hi,

what is POD ?  Which (Win32)-Application do i have to use if i want to
read POD-Files ???

____________________________________________________________
List Site: http://www.findmail.com/list/perl-beginner/
To unsubscribe, send to perl-beginner-unsubscribe@...

FREE group e-mail lists at http://www.findmail.com

#27 From: "Dave Dustin" <dave@...>
Date: Tue Aug 25, 1998 10:09 am
Subject: Re: [PBML] How to insert a string?
dave@...
Send Email Send Email
 
>Hi,there. I need your help. I am using perl to wirte a cgi scripts. I
>need to insert a string into a data file called data.html . Suppose a
>tag <!--insert string here-->is embeded in data.html. I want a string
>insert after this tag.  What if this data file is not exist before but
>how it can be created from a template file such as template.html?

>It is concluded that I want my scripts to :
>1.Create a new file from a template;
>2.Insert a string into somewhere in this newly created file;

This quickly (and probably badly) written piece of code below will do what
you want.  It will check to see if data.html exists, if it does, we work
with it, otherwise we work with the template file.

It pre-loads the entire file into an array, checking each line as we go to
see if we have a match on our search string. If we do then we replace it
with the new string.

The routine can be improved but I've kept it simple to demonstrate.



#!/usr/bin/perl

$searchstring = "<!--insert string here-->";
$newstring = "whatever string you want to insert";
$docpath = "/usr/httpd/htdocs/";

if (!-e "$docpath/data.html") {
	 open(FILE,"$docpath/template.html");
} else {
	 open(FILE,"$docpath/data.html");
}

while (<FILE>) {
	 if (/$searchstring/i) {
		 s/$searchstring/$newstring/oi;
	 }
	 push @lines,$_;
}
close(FILE);

open(NEWFILE,">$docpath/data.html");
print NEWFILE @lines;
close(NEWFILE);



--
Dave Dustin

"Forgive and Remember"

____________________________________________________________
List Site: http://www.findmail.com/list/perl-beginner/
To unsubscribe, send to perl-beginner-unsubscribe@...

FREE group e-mail lists at http://www.findmail.com

#26 From: Xiaoxiong Zhu <xxzhu@...>
Date: Mon Aug 24, 1998 12:51 pm
Subject: [PBML] How to insert a string?
xxzhu@...
Send Email Send Email
 
Hi,there. I need your help. I am using perl to wirte a cgi scripts. I
need to insert a string into a data file called data.html . Suppose a
tag <!--insert string here-->is embeded in data.html . I want a string
insert after this tag.  What if this data file is not exist before but
how it can be created from a template file such as template.html?

It is concluded that I want my scripts to :
1.Create a new file from a template;
2.Insert a string into somewhere in this newly created file;

Thanks a lot.

Xiaoxiong Zhu
Shanghai,China


____________________________________________________________
List Site: http://www.findmail.com/list/perl-beginner/
To unsubscribe, send to perl-beginner-unsubscribe@...

FREE group e-mail lists at http://www.findmail.com

#25 From: jboes@... (Jeff Boes)
Date: Mon Aug 24, 1998 2:53 am
Subject: Re: [PBML] Regex Help
jboes@...
Send Email Send Email
 
On Sun, 23 Aug 1998 17:26:17 -0500, hdesign <hdesign@...> wrote:

>$_='My email address is <<<web@...>.';
>print "$_ \n";
>print "Match  worked :$1:\n" if /(<*>)/i;

Here's what you want:

	 $_='My email address is <<<web@...>.';
	 print "$_ \n";
	 print "Match  worked :$1:\n" if /<([^<]*)>/i;


Broken down:

<  - matches a literal '<'

  ()  - contains the pattern returned in $1

     []*  - defines a class of characters matched as a string

       ^<  - matches anything BUT a '<'


So the pattern says "Match '<', then zero or more characters which aren't a '<',
and finally a '>'."



--
~~~~~~~~~~~~~~~~|Fare Thee well now, let your
Jeffery Boes    |life proceed by its own design.
jboes@...   |Nothing to tell now, let your
UIN 3394914     |words be yours, I'm done with mine...

____________________________________________________________
List Site: http://www.findmail.com/list/perl-beginner/
To unsubscribe, send to perl-beginner-unsubscribe@...

FREE group e-mail lists at http://www.findmail.com

#24 From: hdesign <hdesign@...>
Date: Sun Aug 23, 1998 10:26 pm
Subject: [PBML] Regex Help
hdesign@...
Send Email Send Email
 
I've been trying to figure out what is going on here:

  the first example returns  > only

$_='My email address is <<<web@...>.';
print "$_ \n";
print "Match  worked :$1:\n" if /(<*>)/i;

and this example  returns <<<<>

$_='My email address is <web@...<<<<>.';
print "$_ \n";
print "Match 3 worked :$1:\n" if /(<*>)/i;


with the regex <*>  I understand it as meaning, matching <, then * zero or
more of the previous characters.  I don't see why the first example would
not return <<> instead of just >.

If someone could shed some light on this, I would greatly appreciate it.

Thanks in advance


____________________________________________________________
List Site: http://www.findmail.com/list/perl-beginner/
To unsubscribe, send to perl-beginner-unsubscribe@...

FREE group e-mail lists at http://www.findmail.com

#23 From: "Conrad Classen" <cclassen@...>
Date: Sun Aug 23, 1998 12:29 pm
Subject: Re: [PBML] spaces
cclassen@...
Send Email Send Email
 
Use the \s switch for spaces. i.e. /[\s]+/

Conrad

-----Original Message-----
From: pang khong lin <klpang@...>
To: perl-beginner@... <perl-beginner@...>
Date: 21 August 1998 05:15
Subject: [PBML] spaces


>Help needed. I need to check a field to see whether it is empty. If it
>is not, need to check again if it contains only spaces. The empty part
>is easy, but how to check for spaces only?
>
>Thanks in advance
>
>______________________________________________________
>Get Your Private, Free Email at http://www.hotmail.com
>
>____________________________________________________________
>List Site: http://www.findmail.com/list/perl-beginner/
>To unsubscribe, send to perl-beginner-unsubscribe@...
>
>FREE group e-mail lists at http://www.findmail.com
>


____________________________________________________________
List Site: http://www.findmail.com/list/perl-beginner/
To unsubscribe, send to perl-beginner-unsubscribe@...

FREE group e-mail lists at http://www.findmail.com

#22 From: "pang khong lin" <klpang@...>
Date: Thu Aug 20, 1998 11:15 pm
Subject: [PBML] spaces
klpang@...
Send Email Send Email
 
Help needed. I need to check a field to see whether it is empty. If it
is not, need to check again if it contains only spaces. The empty part
is easy, but how to check for spaces only?

Thanks in advance

______________________________________________________
Get Your Private, Free Email at http://www.hotmail.com

____________________________________________________________
List Site: http://www.findmail.com/list/perl-beginner/
To unsubscribe, send to perl-beginner-unsubscribe@...

FREE group e-mail lists at http://www.findmail.com

#21 From: "Martin Sjöberg" <sjoberg@...>
Date: Sun Aug 9, 1998 9:36 pm
Subject: [PBML] regex trouble or my brain feels like jello...
sjoberg@...
Send Email Send Email
 
Hi!

I'm trying to make this regex work like I want it to.
This is as close I've come so far.

while ($form{msg} =~ m/\b\S{41,}?\b/)
   {
   $form{msg}  =~ s/\b(\S{40})(\S+?)\b/$1 $2/;
   }

This does what I want it to but only with letters and numbers.

I want it to match any 'words' no mather what charcters except space
and \n. Please be gentle..I'm only on page 30 in my Owl ;)

Martin




----
Read this list on the Web at http://www.makelist.com/list/perl-beginner/
To unsubscribe, email to perl-beginner-unsubscribe@...
To subscribe, email to perl-beginner-subscribe@...
--
Start a FREE E-Mail List at http://www.makelist.com !

#20 From: Greg Webster <gwebster@...>
Date: Sat Aug 8, 1998 2:04 pm
Subject: Re: [PBML] perl and browser
gwebster@...
Send Email Send Email
 
At 05:15 PM 8/10/98 -0000, you wrote:
>Please,
>> How can I do to run a Perl CGI script from my browser (by example,
>> Netscape) in Windows 95. I have Perl for Win32 v5.0003_7 on my PC.
>>
>> Thank you in advanced.
>>
>>
>
>Do you have server software on your local computer?
>If not the following will apply.
>If I am tryng to test my perl programs on my local computer, I have to go
thru my local server (not the remote). I think I remember getting a free
copy of Microsoft's "Personal Server" that came on the CD included in back
of one of my perl books. I use Website Pro but I think Microsoft puts one
out free. What happens is the URL that you type in will look similar to
http://localhost/directory_name/file.htm
>Where file.htm is the HTML page that the form is on. If you have your
server software going, the browser will "talk" to the server software and
"do the script". If you have an error in your script, your browser will
come back with possible reasons why it errored.

If you are just testing scripts, it might be best to stay away from
Microsoft's personal webserver. It's pretty clunky and a little overpowered
for that use.

Instead, try Omnihttpd, available at pretty much any large shareware site
(www.shareware.com works) or at http://www.omnicron.ab.ca/httpd/

Super-easy to install, very configurable, but not overpowering and not a
memory hog.

Greg


      Integrity is not a conditional word.  It doesn't blow
      in the wind or change with the weather.  It is your
      inner image of yourself, and if you look in there and
      see a man who won't cheat, then you know he never will.

                               -John D. MacDonald
                                _The Turquoise Lament_
gwebster@...


----
Read this list on the Web at http://www.makelist.com/list/perl-beginner/
To unsubscribe, email to perl-beginner-unsubscribe@...
To subscribe, email to perl-beginner-subscribe@...
--
Start a FREE E-Mail List at http://www.makelist.com !

#19 From: "sheila mclaughlin" <sheila@...>
Date: Mon Aug 10, 1998 5:15 pm
Subject: Re: [PBML] perl and browser
sheila@...
Send Email Send Email
 
Please,
> How can I do to run a Perl CGI script from my browser (by example,
> Netscape) in Windows 95. I have Perl for Win32 v5.0003_7 on my PC.
>
> Thank you in advanced.
>
>

Do you have server software on your local computer?
If not the following will apply.
If I am tryng to test my perl programs on my local computer, I have to go thru
my local server (not the remote). I think I remember getting a free copy of
Microsoft's "Personal Server" that came on the CD included in back of one of my
perl books. I use Website Pro but I think Microsoft puts one out free. What
happens is the URL that you type in will look similar to
http://localhost/directory_name/file.htm
Where file.htm is the HTML page that the form is on. If you have your server
software going, the browser will "talk" to the server software and "do the
script". If you have an error in your script, your browser will come back with
possible reasons why it errored.



-----
Original Message: http://www.findmail.com/list/perl-beginner/?start=18
Start a FREE email list at http://www.FindMail.com/


----
Read this list on the Web at http://www.makelist.com/list/perl-beginner/
To unsubscribe, email to perl-beginner-unsubscribe@...
To subscribe, email to perl-beginner-subscribe@...
--
Start a FREE E-Mail List at http://www.makelist.com !

#18 From: "Carmelo Rengifo A." <crengifo@...>
Date: Sun Aug 9, 1998 4:43 pm
Subject: [PBML] perl and browser
crengifo@...
Send Email Send Email
 
Please,
How can I do to run a Perl CGI script from my browser (by example,
Netscape) in Windows 95. I have Perl for Win32 v5.0003_7 on my PC.

Thank you in advanced.


----
Read this list on the Web at http://www.makelist.com/list/perl-beginner/
To unsubscribe, email to perl-beginner-unsubscribe@...
To subscribe, email to perl-beginner-subscribe@...
--
Start a FREE E-Mail List at http://www.makelist.com !

#17 From: Greg Webster <gwebster@...>
Date: Sat Aug 8, 1998 12:52 pm
Subject: Re: [PBML] CGI.pm
gwebster@...
Send Email Send Email
 
But I would like to add a screen that takes in Credit Card info. I would
need to include fields other than "textfields". I can't seem to get the
submit button to include or acknowledge my new fields.  Do I really have to
send it to another script?
Seems like there should be a way to include another screen for something
other than straight text boxes.
I'm trying to include drop down and radio buttons.
Anyone have ideas???
Thanks
sheila

Not sure I understand completely...a credit card number is just
digits...and therefore would be fine in a text field...or are you looking
for "type" of credit card (Amex Mastercard, Visa) in a dropbox?

Either way, some clarification would be good.

Thanks,

Greg
            Eng:    I think that Elvis is still alive.
            Latin:  Credo Elvem ipsum etian vivere.

gwebster@...


----
Read this list on the Web at http://www.makelist.com/list/perl-beginner/
To unsubscribe, email to perl-beginner-unsubscribe@...
To subscribe, email to perl-beginner-subscribe@...
--
Start a FREE E-Mail List at http://www.makelist.com !

#16 From: "Sheila McLaughlin" <sheila@...>
Date: Sat Aug 8, 1998 10:53 pm
Subject: [PBML] CGI.pm
sheila@...
Send Email Send Email
 
Hi all,
I have been reading the CGI.pm book by Lincoln Stein and I have a question regarding one of the scripts. (page 70, listing 2.3)
If you don't have the book, my question is regarding an example script found at
The script name is loan.pl 
I like it because it allows a form to have different screens and saves the state even though it moves to another screen. I like the idea of being able to break down the info your asking for in steps rather than a page a mile long with many lines of input. (hope that made sense)
Anyway, unless I'm missing something, I don't see where you can save the data to a file. I tried inserting simple code to save the data to a file :
 
open(FILE,">>loan.txt");
print FILE $field, "  -  " ;
print FILE  param(-name=>$field),"\n";
print FILE " \n";
 
That does write the names and values to a text file.
(It prints out the variable name followed by a dash and then the value)
 
But I would like to add a screen that takes in Credit Card info. I would need to include fields other than "textfields". I can't seem to get the submit button to include or acknowledge my new fields.  Do I really have to send it to another script?
Seems like there should be a way to include another screen for something other than straight text boxes. 
I'm trying to include drop down and radio buttons.
Anyone have ideas???
Thanks
sheila
  
Sheila Mclaughlin
sheila@...

#15 From: "Smith, Eric - WPAFB/YSOI" <Eric.Smith@...>
Date: Thu Aug 6, 1998 1:37 pm
Subject: Re: [PBML] where to begin . . . .
Eric.Smith@...
Send Email Send Email
 
I assume you are using Win32 Perl.  If so, you can either use the
Win32::ODBC module or ADODB.  If not, you need to lf you are on Unix, you
might go to CPAN and look for the DBI module.  I don't know much about it,
but you may want to look at Sybperl.  Here are a few links...

1 - Options for Accessing databases from Perl -
http://www.activestate.com/support/faqs/win32/perlwin32faq9.html#How_do_I_ac
cess_databases_from_m
(includes links for Win32::ODBC, ADO, DBI, and Sybperl)

2 - Win32::ODBC FAQ - http://www.roth.net/odbc/odbcfaq.htm

3- Win32::ODBC Tutorial -
http://www.netaxs.com/~joc/perl/article/Article.html

4 - Zack Steinkamp's Win32::ODBC site:
http://multiweb.lib.calpoly.edu/odbc/

5 - Jon's Win32::ODBC Address Book -
http://www.grovehillsys.com/scripting/database/w_a_b.html

6 - Perl-Win32-Database FAQ:
http://www.geocities.com/SiliconValley/Way/6278/perl-win32-database.html

Hope this helps,

- Eric D. Smith - Webmaster
    B-2 Program Office - (937) 656-5256
    mailto:eric.smith@...
    mailto:webmaster@...

> -----Original Message-----
> From: pang khong lin [SMTP:klpang@...]
> Sent: Wednesday, August 05, 1998 8:30 PM
> To: perl-beginner@...
> Subject: [PBML] where to begin . . . .
>
> yeap, help is needed here. Currently I am doing a project where I need
> to put up a form into the local intranet so that everyone could access
> it everywhere in the plant. Now, as usual a form need to be design using
> html with the relevant cgi scripts to perform the processes. The problem
> is these form need to be stored in the database ( they are using sybase
> ). Can anyone direct me to any sites that provide tutorial on
> interfacing ( querying, adding records, updating, etc )between cgi
> scripts and sybase?
> thanks a million.
>
> ______________________________________________________
> Get Your Private, Free Email at http://www.hotmail.com
>
>
> ----
> Read this list on the Web at http://www.makelist.com/list/perl-beginner/
> To unsubscribe, email to perl-beginner-unsubscribe@...
> To subscribe, email to perl-beginner-subscribe@...
> --
> Start a FREE E-Mail List at http://www.makelist.com !


----
Read this list on the Web at http://www.makelist.com/list/perl-beginner/
To unsubscribe, email to perl-beginner-unsubscribe@...
To subscribe, email to perl-beginner-subscribe@...
--
Start a FREE E-Mail List at http://www.makelist.com !

#14 From: Greg Webster <gwebster@...>
Date: Wed Aug 5, 1998 5:17 pm
Subject: Re: [PBML] Perl schools
gwebster@...
Send Email Send Email
 
At 05:22 PM 8/5/98 -0700, you wrote:
>Here in the lush Irvine Silicon Valley of Southern California, there is
>still not a single JC , or even the local university for that matter, that
>teaches a course  specifically for Perl programming, albeit the fact that
>Javascript, Java, web design, etc. is offered everywhere.
>Does anyone in any other part of the  country know if there is a Perl
>course taught at a community college, or at a 4 year school. Just wondered
>why this aspect of computer science has been in the 'underground' for this
>long.

I think that other than a minor segment in a Unix course at the local U
here in Vancouver, there is nothing else local.

I'm hoping to build a website with exercises available for free, so if you
have any that are not copywritten (not from a book), please feel free to
submit them.

Greg Webster


      Integrity is not a conditional word.  It doesn't blow
      in the wind or change with the weather.  It is your
      inner image of yourself, and if you look in there and
      see a man who won't cheat, then you know he never will.

                               -John D. MacDonald
                                _The Turquoise Lament_
gwebster@...


----
Read this list on the Web at http://www.makelist.com/list/perl-beginner/
To unsubscribe, email to perl-beginner-unsubscribe@...
To subscribe, email to perl-beginner-subscribe@...
--
Start a FREE E-Mail List at http://www.makelist.com !

#13 From: "pang khong lin" <klpang@...>
Date: Wed Aug 5, 1998 5:30 pm
Subject: [PBML] where to begin . . . .
klpang@...
Send Email Send Email
 
yeap, help is needed here. Currently I am doing a project where I need
to put up a form into the local intranet so that everyone could access
it everywhere in the plant. Now, as usual a form need to be design using
html with the relevant cgi scripts to perform the processes. The problem
is these form need to be stored in the database ( they are using sybase
). Can anyone direct me to any sites that provide tutorial on
interfacing ( querying, adding records, updating, etc )between cgi
scripts and sybase?
thanks a million.

______________________________________________________
Get Your Private, Free Email at http://www.hotmail.com


----
Read this list on the Web at http://www.makelist.com/list/perl-beginner/
To unsubscribe, email to perl-beginner-unsubscribe@...
To subscribe, email to perl-beginner-subscribe@...
--
Start a FREE E-Mail List at http://www.makelist.com !

#12 From: webprogramming <info@...>
Date: Thu Aug 6, 1998 12:22 am
Subject: [PBML] Perl schools
info@...
Send Email Send Email
 
Here in the lush Irvine Silicon Valley of Southern California, there is
still not a single JC , or even the local university for that matter, that
teaches a course  specifically for Perl programming, albeit the fact that
Javascript, Java, web design, etc. is offered everywhere.
Does anyone in any other part of the  country know if there is a Perl
course taught at a community college, or at a 4 year school. Just wondered
why this aspect of computer science has been in the 'underground' for this
long.



Best regards

Roland Gregory
Web programming mgr
Innovative Dimensions Online- Full service internet company
info@...





----
Read this list on the Web at http://www.makelist.com/list/perl-beginner/
To unsubscribe, email to perl-beginner-unsubscribe@...
To subscribe, email to perl-beginner-subscribe@...
--
Start a FREE E-Mail List at http://www.makelist.com !

#11 From: "Conrad Classen" <cclassen@...>
Date: Wed Aug 5, 1998 1:58 pm
Subject: Re: [PBML] ODBC with ms SQL
cclassen@...
Send Email Send Email
 
Thanks Chuck

The first I had looked at, but the seond and thirs appear to be even more
comprehensive.

Conrad


Here is a list of info I have found:

1. Win32::ODBC FAQ at www.roth.net (good start)
2. Win32::ODBC Tutorial at www.netaxs.com/%7Ejoc/perl/article/Article.html
3. www.fastnetltd.ndirect.co.uk/Perl/perl-win32-database.html

Hope this helps.



----
Read this list on the Web at http://www.makelist.com/list/perl-beginner/
To unsubscribe, email to perl-beginner-unsubscribe@...
To subscribe, email to perl-beginner-subscribe@...
--
Start a FREE E-Mail List at http://www.makelist.com !

#10 From: Greg Webster <gwebster@...>
Date: Wed Aug 5, 1998 2:48 am
Subject: Re: [PBML] Why Perl?
gwebster@...
Send Email Send Email
 
At 01:42 AM 8/5/98 -0500, you wrote:
>I'm new to scripting on the Win 32 platform, but it seems as though there a
>lot of options -- Perl, VB Script, Java Script, WSH, Kix, etc.  How do I
>know that "Perl" is the "right" language to learn??? i.e., if I'm starting
>out with scripting, should Perl be my first language to learn, or would it
>be more beneficial to start off with something else and pick up perl
>ater?  -Andy

Hmmm...hard question. I personally went from HTML to Javascript then to
Perl, and I'm still struggling along there.

In the past though I've tried to teach myself things like Pascal (yeah, I'm
old) and Visual Basic. I've accomplished more with Perl than I have with
any other language, and I feel like I have a better grasp on the beginnings
than any other language...

I'd say Perl is an appropriate place to start.

Greg Webster





----
Read this list on the Web at http://www.makelist.com/list/perl-beginner/
To unsubscribe, email to perl-beginner-unsubscribe@...
To subscribe, email to perl-beginner-subscribe@...
--
Start a FREE E-Mail List at http://www.makelist.com !

#9 From: "Andy Beaver" <andyb@...>
Date: Wed Aug 5, 1998 6:42 am
Subject: [PBML] Why Perl?
andyb@...
Send Email Send Email
 
I'm new to scripting on the Win 32 platform, but it seems as though there a
lot of options -- Perl, VB Script, Java Script, WSH, Kix, etc.  How do I
know that "Perl" is the "right" language to learn??? i.e., if I'm starting
out with scripting, should Perl be my first language to learn, or would it
be more beneficial to start off with something else and pick up perl
ater?  -Andy




----
Read this list on the Web at http://www.makelist.com/list/perl-beginner/
To unsubscribe, email to perl-beginner-unsubscribe@...
To subscribe, email to perl-beginner-subscribe@...
--
Start a FREE E-Mail List at http://www.makelist.com !

#8 From: Greg Webster <gwebster@...>
Date: Tue Aug 4, 1998 6:59 pm
Subject: [PBML] Slowly growing
gwebster@...
Send Email Send Email
 
I've noticed some of the questions that have been posted are not getting
answered, and I apologize. I'm fairly new to Perl myself and just don't
know everything.

The list is still small (though growing - about 2 subscriptions a day),
once we get more people here the answers will be flowing a little quicker
I'm sure. If anyone knows of people who have some Perl interest or
experience, please invite them in.

Thanks,

Greg



----
Read this list on the Web at http://www.makelist.com/list/perl-beginner/
To unsubscribe, email to perl-beginner-unsubscribe@...
To subscribe, email to perl-beginner-subscribe@...
--
Start a FREE E-Mail List at http://www.makelist.com !

#7 From: "Chuck Reed" <c.reed@...>
Date: Tue Aug 4, 1998 5:17 pm
Subject: Re: [PBML] ODBC with ms SQL
c.reed@...
Send Email Send Email
 
Here is a list of info I have found:

1. Win32::ODBC FAQ at www.roth.net (good start)
2. Win32::ODBC Tutorial at www.netaxs.com/%7Ejoc/perl/article/Article.html
3. www.fastnetltd.ndirect.co.uk/Perl/perl-win32-database.html

Hope this helps.


Hi Kelly
>
> There where no previous posts as such, the one being referred to being the
> first one.
>
> Conrad
>
> -----Original Message-----
> From: Kelly Zhu, TSTC Library <kzhu@...>
> To: perl-beginner@... <perl-beginner@...>
> Date: 04 August 1998 09:01
> Subject: [PBML] ODBC with ms SQL
>
>
> Hi, all,
>
> I just subscribed to the list a moment ago.  I am not quite
> clear about what has been discussed.  But I want to know the
> details after reading the following post.
>
> Thanks.
>
> Kelly
> --------------------------
> Greg and all
>
> Let me be the first again.
>
> In order to link to a MS SQL server using ODBC, what is the
> preferred way of doing this?
>
> 1/2) use Win32:ODBC;
> 1). Sending a $db-sql(); Query.
> 2). How to retrieve the info returned and/or error info?
> 3). Appending a new record?
> 4). Updating an existing record?
> 5). Deleting a record?
>
> I'm a bit in the dark here, which must be apparent to all.
>
> Conrad
>
>
> ----
> Read this list on the Web at http://www.makelist.com/list/perl-beginner/
> To unsubscribe, email to perl-beginner-unsubscribe@...
> To subscribe, email to perl-beginner-subscribe@...
> --
> Start a FREE E-Mail List at http://www.makelist.com !
>
>
>
>
> ----
> Read this list on the Web at http://www.makelist.com/list/perl-beginner/
> To unsubscribe, email to perl-beginner-unsubscribe@...
> To subscribe, email to perl-beginner-subscribe@...
> --
> Start a FREE E-Mail List at http://www.makelist.com !
>
>



-----
Original Message: http://www.findmail.com/list/perl-beginner/?start=5
Start a FREE email list at http://www.FindMail.com/


----
Read this list on the Web at http://www.makelist.com/list/perl-beginner/
To unsubscribe, email to perl-beginner-unsubscribe@...
To subscribe, email to perl-beginner-subscribe@...
--
Start a FREE E-Mail List at http://www.makelist.com !

#6 From: HaraldWolf@...
Date: Tue Aug 4, 1998 5:28 am
Subject: (No subject)
HaraldWolf@...
Send Email Send Email
 
Hi,

i have problems with the perl -d (debug mode). If i want to view the
variables if i type in "V" all variables are listed. But when i use "|
V" (it works fine with the LINUX Perl !) to stop after each page the
Win32 perl version makes no return (one long line is printed !) !

how can i fix this ?

and how can i view a single variable ??



----
Read this list on the Web at http://www.makelist.com/list/perl-beginner/
To unsubscribe, email to perl-beginner-unsubscribe@...
To subscribe, email to perl-beginner-subscribe@...
--
Start a FREE E-Mail List at http://www.makelist.com !

#5 From: "Conrad Classen" <cclassen@...>
Date: Mon Aug 3, 1998 10:06 pm
Subject: Re: [PBML] ODBC with ms SQL
cclassen@...
Send Email Send Email
 
Hi Kelly

There where no previous posts as such, the one being referred to being the
first one.

Conrad

-----Original Message-----
From: Kelly Zhu, TSTC Library <kzhu@...>
To: perl-beginner@... <perl-beginner@...>
Date: 04 August 1998 09:01
Subject: [PBML] ODBC with ms SQL


Hi, all,

I just subscribed to the list a moment ago.  I am not quite
clear about what has been discussed.  But I want to know the
details after reading the following post.

Thanks.

Kelly
--------------------------
Greg and all

Let me be the first again.

In order to link to a MS SQL server using ODBC, what is the
preferred way of doing this?

1/2) use Win32:ODBC;
1). Sending a $db-sql(); Query.
2). How to retrieve the info returned and/or error info?
3). Appending a new record?
4). Updating an existing record?
5). Deleting a record?

I'm a bit in the dark here, which must be apparent to all.

Conrad


----
Read this list on the Web at http://www.makelist.com/list/perl-beginner/
To unsubscribe, email to perl-beginner-unsubscribe@...
To subscribe, email to perl-beginner-subscribe@...
--
Start a FREE E-Mail List at http://www.makelist.com !




----
Read this list on the Web at http://www.makelist.com/list/perl-beginner/
To unsubscribe, email to perl-beginner-unsubscribe@...
To subscribe, email to perl-beginner-subscribe@...
--
Start a FREE E-Mail List at http://www.makelist.com !

#4 From: "Kelly Zhu, TSTC Library" <kzhu@...>
Date: Mon Aug 3, 1998 5:02 pm
Subject: [PBML] ODBC with ms SQL
kzhu@...
Send Email Send Email
 
Hi, all,

I just subscribed to the list a moment ago.  I am not quite
clear about what has been discussed.  But I want to know the
details after reading the following post.

Thanks.

Kelly
--------------------------
Greg and all

Let me be the first again.

In order to link to a MS SQL server using ODBC, what is the
preferred way of doing this?

1/2) use Win32:ODBC;
1). Sending a $db-sql(); Query.
2). How to retrieve the info returned and/or error info?
3). Appending a new record?
4). Updating an existing record?
5). Deleting a record?

I'm a bit in the dark here, which must be apparent to all.

Conrad


----
Read this list on the Web at http://www.makelist.com/list/perl-beginner/
To unsubscribe, email to perl-beginner-unsubscribe@...
To subscribe, email to perl-beginner-subscribe@...
--
Start a FREE E-Mail List at http://www.makelist.com !

#3 From: "Conrad Classen" <cclassen@...>
Date: Mon Aug 3, 1998 8:39 pm
Subject: [PBML] Starting to use ODBC with MS SQL
cclassen@...
Send Email Send Email
 
Greg and all

Let me be the first again.

In order to link to a MS SQL server using ODBC, what is the
preferred way of doing this?

1/2) use Win32:ODBC;
1). Sending a $db-sql(); Query.
2). How to retrieve the info returned and/or error info?
3). Appending a new record?
4). Updating an existing record?
5). Deleting a record?

I'm a bit in the dark here, which must be apparent to all.

Conrad




----
Read this list on the Web at http://www.makelist.com/list/perl-beginner/
To unsubscribe, email to perl-beginner-unsubscribe@...
To subscribe, email to perl-beginner-subscribe@...
--
Start a FREE E-Mail List at http://www.makelist.com !

#2 From: "Greg Webster" <gwebster@...>
Date: Mon Aug 3, 1998 8:20 pm
Subject: [PBML] Perl-Beginner Mailing List
gwebster@...
Send Email Send Email
 
Heya all,

Looks like the list is popular, so far 30 people have signed up in a couple of
days.

Please feel free to start posting, there are enough people on here that it's a
good bet someone will reply. I'll be posting the occasional Perl Exercise or
scripts that I've been working on for the list, as well as working on a
Perl-Beginners webpage. But I can't keep up a conversation myself.

If anyone wants to, please feel free to post what you've done, or at least links
to a webpage.

As for now, I just finished my first attempt at graphics manipulation with Perl
at:
http://silverspin.web66.com/greg/experiments/worldmap/worldmap.shtml

If anyone wishes to find out more, email the list.

Thanks,

Greg



-----
Original Message: http://www.findmail.com/list/perl-beginner/?start=1
Start a FREE email list at http://www.FindMail.com/


----
Read this list on the Web at http://www.makelist.com/list/perl-beginner/
To unsubscribe, email to perl-beginner-unsubscribe@...
To subscribe, email to perl-beginner-subscribe@...
--
Start a FREE E-Mail List at http://www.makelist.com !

#1 From: "Greg Webster" <gwebster@...>
Date: Sun Aug 2, 1998 8:32 am
Subject: Welcome to the perl-beginner Mailing List
gwebster@...
Send Email Send Email
 
Perl Beginners Mailing List - The PBML is a list for the close-to absolute Perl
beginner, allowing more experienced (and very kind and patient) Perl programmers
to help those along who have an interest in programming Perl. This follows the
beginning ideal of Perl...free for all, public source and information, and
giving of time and effort to make it easy for others.

Beginners will be helping beginners so that both can learn, with aid from more
experienced people popping in to check for fresh ideas and give a helping hand.

Messages 1 - 30 of 26724   Newest  |  < Newer  |  Older >  |  Oldest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help