| Thread | Last Post | Replies |
|
| Server/client over a network | 20 Sep 2006 20:40 GMT | 3 |
what I want to do is have a server on one machine and a client on the other. I want the client to connect to the server through a tcp network (over the internet). I have tried this and I constantly get the no socket error. The program works on the local machine just fine. Also I
|
| Perl compiler | 20 Sep 2006 19:29 GMT | 9 |
Can anyone recommend a good perl compiler for creating .exe files running under Dos? Bill H www.ts1000.us
|
| Trying to match keys of hash with DBI fetchrow_hashref | 20 Sep 2006 16:56 GMT | 4 |
Hi, noob here... I'm trying to read a row containing usernames and see if those usernames are in an already created hash... ------- Code -------
|
| Parse CSV file | 20 Sep 2006 16:51 GMT | 3 |
Need help folks. I have a csv file that has some fields containing "," as part of the field and not a delimiter. These fields are double quoted. What I need to do is read each line, if the value in field 22 = X dont
|
| Coderef to object methods? | 20 Sep 2006 14:06 GMT | 9 |
I found examples of coderefs to subroutines in Perl Objects, References and Modules, chapter 6. It goes something like this: # Assignment $subroutine_ref = \&subroutine;
|
| Crypt::SSLeay HTTPS_PROXY support | 20 Sep 2006 11:06 GMT | 6 |
I could not get the example script from Crypt::SSLeay run successfully. Here is the script --------------------- #!/usr/bin/perl
|
| Question on download by LWP | 20 Sep 2006 04:14 GMT | 14 |
I'm trying to use a perl script to download some html files on a website, but it's very strange that the response for the fetch-file is always "404 not found", even though I have no problem to open the same url in IE. And the same script can work for the urls of other websites.
|
| String buffer instead of file handle? | 19 Sep 2006 18:11 GMT | 39 |
I have to connect to this module, and I usually send it a file handle, or stdout. But I want to write it to a string. Is there a string buffer or something I can use? open (FILEO, ">test.txt");
|
| any(@originals) ~~ { .foo eq $bar} (was Re: renaming "grep" to "where") | 19 Sep 2006 17:34 GMT | 1 |
On 9/19/06, Trey Harris <trey@lopsa.org> wrote:
> In a message dated Mon, 18 Sep 2006, Darren Duncan writes: > > @filtered = @originals.where:{ .foo eq $bar }; |
| database connect: protect with exceptions? | 19 Sep 2006 16:14 GMT | 4 |
hereafter is the command I use to connect my database; my $dbhCampeggio = DBI->connect( "DBI:PgPP:dbname=$DATABASE_NAME;host=$DATABASE_SERVER;port=5432", "postgres",
|
| Modification of a read-only value attempted - why? | 19 Sep 2006 15:45 GMT | 6 |
Can someone explain this to me? (full text at http://aplawrence.com/Unix/perl_readonly.html , abbreviated version here) Test code:
|
| exec command issue | 19 Sep 2006 15:45 GMT | 14 |
Hey All I got a simple program that reads an file listing using the dos dir command and then performs another exec on each file name in the list. Problem is perl doesnt seem to run the second dos command. ?
|
| Preventing changes to a module's variables in mod_perl | 19 Sep 2006 14:40 GMT | 9 |
I have a module that exists as a central data store, returning simple scalars or references to larger structures. All of its data is stored in a big hash, and I use AUTOLOAD to return the requested value. The problem is that, with mod_perl, if the script that uses the module
|
| Use of uninitialized value in print | 19 Sep 2006 13:22 GMT | 2 |
I ran into a problem that I have been working on, the warning use of unitialized value at print I have tried everything I know. I have initialized my variables but I don't get the contents of the value. I have looked at perldoc but
|
| perl and xml parsing | 19 Sep 2006 12:46 GMT | 3 |
I am new to both perl and xml. I need to parse through an xml file and extract data from certain elements. I know I should probably use the XML::SAX cpan module but haven't been able to find any usable examples. I've posted this to c.l.xml, but thought
|