| Thread | Last Post | Replies |
|
| Help wanted | 31 May 2005 23:50 GMT | 1 |
I had a lot of data, which are all x-y values. I stored these data in MySQL database. Now I wanna use Perl to get these data from database to build a figure(2-dimensional) and people can use internet to see the figure. In addition, when people see the figure via internet, the x-y ...
|
| RE: :Oracle problems | 31 May 2005 21:56 GMT | 4 |
Subject: DBD::Oracle problems All, I am getting the following error while trying to use DBD::Oracle: DBD::Oracle::st execute failed: ORA-00900: invalid SQL statement (DBD
|
| DBD::Oracle problems | 31 May 2005 20:40 GMT | 1 |
All, I am getting the following error while trying to use DBD::Oracle: DBD::Oracle::st execute failed: ORA-00900: invalid SQL statement (DBD ERROR: OCIStmtExecute) [for Statement "describe ALL_USERS"] at
|
| $p{"Bryan"}{"age"} = 31 | 31 May 2005 17:48 GMT | 1 |
Is there anything wrong with out of the blue making a statement like this: $p{"Bryan"}{"age"} = 31; I thought perl required me to use the anonymous hash composer: $p{"Bryan"} = { "age" => 31 };
|
| simple open file | 31 May 2005 15:01 GMT | 2 |
I'm trying to open (create if necessary) a file for APPEND, that will serve as a log. The script I'm using will open a file, but fails to print anything to it. Any advice? my $filename = "open_file.txt";
|
| Perl 5.6.0, AIX, Missing Module | 30 May 2005 19:54 GMT | 1 |
I am using the File::Tail perl module. When I try to run my script I get the following error message: Can't locate loadable object for module Time::HiRes in @INC (@INC contains: /usr/opt/perl5/lib/5.6.0/aix /usr/opt/perl5/lib/5.6.0
|
| why getstore can't work, especially for store xml file on freebsd | 30 May 2005 02:59 GMT | 4 |
Hi; I have a small program that uses getstore to fetch a xml webpahe and store it. It is: use strict;
|
| Hash of Arrays, p. 276 | 29 May 2005 01:13 GMT | 1 |
I am continuing to read the Camel Book. I am reading about complex data structrures. On page 276, there is an example of a HoA. (I am typing from memory so this may not be exactly correct) $HoA{"flintstone"}[0] = "fred"; Please look at the definition and initialization of the ...
|
| absolute path of current process | 28 May 2005 18:34 GMT | 4 |
Is this: my $path = [File::Spec->splitpath (File::Spec->rel2abs ($0))]->[1]; the only OS independent (unix/win32) way to determine the absolute path of the directory which contains the current process, or there is a less cryptic
|
| count rows without count(*) | 28 May 2005 14:47 GMT | 1 |
I get data from DB with: while (my ($id, $post_text) = $getpost->fetchrow_array) { is there a way how much columns are selected wihout select (fetch) them all, or using count(*) function ?
|
| RE: remove duplicate lines (OT) | 27 May 2005 23:26 GMT | 1 |
> $ cat marc21textfile | uniq > outputfile Where's Randal for a UUOC award?
 Signature To unsubscribe, e-mail: beginners-unsubscribe@perl.org
|
| bold print to a FH | 27 May 2005 07:40 GMT | 6 |
All, I want to have bold print of a Title but it is not working. Here is my code: require 5.6.1;
|
| How to upgrade local module using -MCPAN? | 26 May 2005 19:56 GMT | 2 |
Hi, All I am curious about how to upgrade local module in 'perl -MCPAN -e shell'? Thanks! Yu
|
| search and replace confusion | 26 May 2005 19:22 GMT | 4 |
What I'm trying to do with the following code is convert some iCal files so that a specific application will read them. The problem is that this application can't deal with
|
| search a file | 26 May 2005 14:15 GMT | 2 |
Hello, I'm writing a simple perl program. no CGI. * I need to make the program list all the files that have an extension of ".v" in the current directory. Do anyone know a function that makes that ?! Best Regards, Eliyah
|