Win has asked for the wisdom of the Perl Monks concerning the following question:
my $Select_areas = "SELECT DISTINCT Instance_name FROM Geo_definitions +_normalised where Geo_category_class LIKE ".$Special_data_retrieval." + ORDER BY Instance_name \;"; my $sth_Geo = $dbh->prepare($Select_areas) or die "Couldn't prepare qu +ery: ".$dbh->errstr; $sth_Geo->execute() or die "Couldn't execute query: ".$sth_Geo->errst +r; my @Geo_areas = $sth_Geo->fetchrow_array; ## I think that the proble +m is here.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: my @Array = $sth->fetchrow_array;
by jbrugger (Parson) on Jan 10, 2006 at 12:14 UTC | |
by blazar (Canon) on Jan 10, 2006 at 13:53 UTC | |
by Win (Novice) on Jan 10, 2006 at 12:55 UTC | |
by McDarren (Abbot) on Jan 10, 2006 at 13:25 UTC | |
by blazar (Canon) on Jan 10, 2006 at 14:02 UTC |