Perl Newby has asked for the wisdom of the Perl Monks concerning the following question:
this is an example of how I was able to get the info queried out but I can not use this if there is less than 11 rows returned.use dbi; my $dbh, $sth; my ($sport, $import) = @_; my ($path) = "d:/text/time/" . $sport . ".txt"; open (text, "$path") or die "couldn't open!\n"; my (@text) = <text>; my $d = $text[0]; my $t = $text[1]; my $a = $text[2]; $dbh = DBI->connect("dbi:ODBC:burlee","spacecitysports","houston34") + or die die "Can't open connection\n"; $sth = $dbh->prepare("select * from DATA_DB_ENTRY__ASTROS_STAGING where TS_DATE >= '" . $d . "' and IMPORTACE = '" . $import . "' order by TS_DATE asc, TS_TIME asc "); $sth->execute();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Querying Select Number of Rows
by Arguile (Hermit) on Jun 05, 2001 at 03:52 UTC | |
|
Re: Querying Select Number of Rows
by runrig (Abbot) on Jun 05, 2001 at 03:24 UTC | |
|
Re: Querying Select Number of Rows
by chipmunk (Parson) on Jun 05, 2001 at 08:08 UTC | |
|
Re: Querying Select Number of Rows
by one4k4 (Hermit) on Jun 05, 2001 at 20:34 UTC |