[Perl-unix-users] MIME::Lite v. 2.016 issues

2001-11-30 Thread Byron Wise
I'm using this module and sending out text/plain and text/html emails using multipart/alternative. We are sending out bulk emails that loop through creating a new object each time with the next email address. It seems that this is bombing. Most of the time it works however. What is weird is t

[Perl-unix-users] DBD::Informix problem

2001-11-30 Thread Craig Sharp
I am trying to use DBD::Informix to query a remote database. I am connected to a local database and then issuing a remote sql query: select * from perf_info@roushprod:archive_info roushprod is in the sqlhosts file. The statement works correctly outside of the DBD/DBI functions.

RE: [Perl-unix-users] Substitution help needed

2001-11-30 Thread Peter Eisengrein
You don't even need the s/// since you need to test for it anyway. You could do it something like this: @lines =('before match', ') in psfs1 extent size 40 next size 10 lock mode row;', 'after match'); foreach (@lines) { if ($_ eq ') in ps

[Perl-unix-users] Substitution help needed

2001-11-30 Thread Craig Sharp
Hi all, I have several lines like the following in a file. I need to make a substitution for the line. I am reading the file into @lines. I then loop through looking for the line. When I find the line, I need to make the change. Then I will write it out to a new file. Here is

[Perl-unix-users] perl and html table? Working now!

2001-11-30 Thread Craig Sharp
Thanks to all. All ideas are great and I was able to make the tables work as I need. Craig ___ Perl-Unix-Users mailing list. To unsubscribe go to http://listserv.ActiveState.com/mailman/subscribe/perl-unix-users

RE: [Perl-unix-users] perl and html tables?

2001-11-30 Thread Fay Jason-W13246
Sorry, maybe I should clarify that a litte. If you have more than one column, then iterate the loop like so... Output the tag. Use a while loop on your DBI return into a fetchrow_array Output the and tags Output loop[0] Output the Output loop[1] Outp

RE: [Perl-unix-users] perl and html tables?

2001-11-30 Thread Fay Jason-W13246
Just do it like this. Output your tag. Use a while loop on your DBI return into a fetchrow_array Output the and tags Output the loop iteration array values of the DBI return Output the and tags Close the loop Output the tag. -Original Message- From: Craig Sh

RE: [Perl-unix-users] RSH Help

2001-11-30 Thread Elston, Jeremy
Greetings... It is a little early in the morning, so maybe I am misreading this, but how are you capturing the results from your rsh when you are redirecting the output to a file on the remote system? Those are backticks not single quotes, right? Not quite warmed up enough to actually test the

[Perl-unix-users] perl and html tables?

2001-11-30 Thread Craig Sharp
I need to create a script that will use DBI to retreive information from Informix and then present the information in a table in html. The DBI part I have with no problem. I need to use perl to create a table in html that will expand or reduce as needed depending on how many rows are