- or download this
my $sth = $dbh->prepare_cached(
"SELECT * FROM ReleaseDates"
);
- or download this
my $sth = $dbh->prepare_cached(
"SELECT convert( char(8), dtXXX, 101 ) FROM ReleaseDates" );
- or download this
my $sth =$connection->prepare(
"SELECT Release, dtTargetFeatureFreeze,
...
dtTargetRTM, TwikiURL, ReleaseNum, Display
FROM ReleaseDates WHERE (Display = 1)"
);
- or download this
my $sth =$connection->prepare(
"SELECT Release,
...
TwikiURL, ReleaseNum, Display
FROM ReleaseDates WHERE (Display = 1)"
);