I am using dbi:odbc and I am trying to grab 11 rows out of my Data Base. I want these eleven rows to be newer than a certian DATE and TIME. But if there are 20 rows newer than the date and time I state, I want to get the oldest 11 rows, ordered by DATE and TIME. I have done this with ASP by using a TOP statement inside a nested select statement together (ordering the nested select asc and the outside select by desc), but I was unable to get this to work in my perl code. I was wondering if there is a way to grab 11 rows, the way I want to (without ordering them by DATE and TIME asc ), because there could be cases when there will be 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();
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.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.