RE: How to sort a character-type field, numerically

2002-09-25 Thread John Almberg
m hoping for is some SQL expert to tell me this would be a silly approach! -- John > -Original Message- > From: Wagner, David --- Senior Programmer Analyst --- WGO > [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, September 25, 2002 4:48 PM > To: 'John Almberg'; Beg

How to sort a character-type field, numerically

2002-09-25 Thread John Almberg
I'm trying to sort a SQL table that contains a character-type field that contains mostly numbers. This field always contains either a number or a number followed by a character. Like '57' or '57a'. I'd like to sort the table *numerically* on this field, not *alphabetically* on this field. That is

RE: file upload to MySql

2002-09-21 Thread John Almberg
You can do the upload with a form. Read any HTML reference and check out the tag. The web server will store the uploaded file as a temporary file. Your form handler will have to store it someplace permanent. This is pretty simple using the CGI module. Check out the CGI module documentation for co

RE: How To Build A Perl Message Board From Scratch

2002-09-17 Thread John Almberg
Simple . . . 1. Get a CS degree at the technical university of your choice. 2. While you're there, do some web programming for fun and to put some of the things you learn to practical use. 3. After graduation, get a job -- preferably in a UNIX/LINUX shop -- so you can hone your practical skills a

Internationalization/Globalization

2002-09-17 Thread John Almberg
I'm looking to Internationalize/Globalize a web site . . . can anyone point me to Perl-related resources on this topic? Lists? White Papers? Modules? Web Sites? I've got tons of general info on this topic . . . looking for Perl-specific info. Thanks in advance for any help . . . -- John -- T

RE: Finding modules . . .

2002-08-15 Thread John Almberg
# Any way to coax Apache into using perl5 to interpret my CGI scripts? Duh! Talk about beginner questions. I figured this one out on my own. All works fine, now! Thanks for all the quick and valuable feedback. -- John # -Original Message- # From: John Almberg [mailto:[EMAIL PROTECTED

RE: Finding modules . . .

2002-08-15 Thread John Almberg
Thanks, that worked. The path is: /usr/lib/perl5.6/site-perl/5.6.1/Mail/Mailer.pm Now here's the funny part . . . running 'perl5 test.cgi' works, but running 'perl test.cgi' yields the error. I'm guessing that these two different versions of perl search different @INC paths and Mailer.PM isn't

Finding modules . . .

2002-08-15 Thread John Almberg
Luckily this is a beginning perl list, because I'm sure this is a real beginners question . . . I believe I have the Mail::Mailer module installed on my system because when I run 'perldoc Mail::Mailer' I get the documentation. However, when I try to 'use' the module, I get the following error mes

RE: Probably impossible

2002-07-08 Thread John Almberg
Why not use crontab to schedule the email? -- John # -Original Message- # From: Nikola Janceski [mailto:[EMAIL PROTECTED]] # Sent: Monday, July 08, 2002 2:36 PM # To: 'Yasen Petrov'; [EMAIL PROTECTED] # Subject: RE: Probably impossible # # # Okay... I looked a little more indepth. #

RE: real beginner's question

2002-07-07 Thread John Almberg
This does sound like an ideal job for Perl, but I think you need to give us more info on what you want to do. For instance, translate all 'i's inside the braces to 'x's, or substitute one sequence of characters for another. An example or scenario would be helpful here. -- John # -Original Me

Embperl

2002-07-06 Thread John Almberg
I think I'm going to have to give up on installing Embperl. Making no progress at all. Can anyone recommend a *good* hosting service that includes Embperl as part of their package. By good I mean fast downloads (all day) and excellent customer service. If so, please let me know off-list at [EMAIL

RE: Modules

2002-07-06 Thread John Almberg
12:10 PM # To: [EMAIL PROTECTED] # Subject: Re: Modules # # # On Sat, 6 Jul 2002 00:17:04 -0400, [EMAIL PROTECTED] (John Almberg) # wrote: # # >What's an easy way to tell if a particular module is installed # on my server? # >I'm sure I read this somewhere, but can't fin

FW: Modules

2002-07-05 Thread John Almberg
again! -- John # # -Original Message- # # From: Andy Lester [mailto:[EMAIL PROTECTED]] # # Sent: Saturday, July 06, 2002 12:24 AM # # To: John Almberg # # Subject: Re: Modules # # # # # # > What's an easy way to tell if a particular module is installed # # on my server? # # > I'm

Modules

2002-07-05 Thread John Almberg
What's an easy way to tell if a particular module is installed on my server? I'm sure I read this somewhere, but can't find it. Thanks! -- John -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Installing Embperl without root privilages

2002-07-05 Thread John Almberg
Has anyone tried to install Embperl without root privilages? I have used embperl on other servers, but am now trying to install it on a shared server. All I really need is embpexec.pl to work off-line. Unfortunatly, when I try to run it, I get the following error message: orange:~/src/Embperl-2.

RE: Exporting variables from a module

2002-07-03 Thread John Almberg
# > package Config; # # You might want another Name here - since there is a Config.pm # already out there how about # # package Almberg::WebConfig; Duh! That was it. I should have realized I was conflicting with another module when I read the error message. Thanks loads. My head was ge

Exporting variables from a module

2002-07-03 Thread John Almberg
Okay, I've been beating my head against this one all day! Hope someone can help. I'm trying to export some scalars from a module. Just some configuration information. The whole module is as follows: ~~~ package Config; our ($HOME_DIR, $INC_URL);