Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   ASP General (http://www.velocityreviews.com/forums/f65-asp-general.html)
-   -   filter results to display those older than 'today'? (http://www.velocityreviews.com/forums/t802291-filter-results-to-display-those-older-than-today.html)

supasnail 10-30-2006 05:04 PM

filter results to display those older than 'today'?
 
I've been going round in circles here trying to get this to work and my
ignorance of ASP is now showing me up.

I want to construct a query string to allow me to filter entries to be
displayed on a web page with respect to the date-entry contained in the
database.

i.e. an archived results page will show all entries where "my_date" is
less than 'todays date'

I have tried to do this by;

Dim strSQL
Dim showdate

showdate = Date

then...

strSQL = "Select * FROM my_database WHERE my_date <" & showdate

Although this does give a result, it has no actual bearing on todays
date and wondered what strinkingly obvious this I'm doing wrong? when I
use > i get all results displayed, when i use < I get none at all.

thanks for any help


Ray Costanzo [MVP] 10-30-2006 05:31 PM

Re: filter results to display those older than 'today'?
 
Please tell us what kind of database you're using.

Ray at work

"supasnail" <supasnail@gmail.com> wrote in message
news:1162227897.221647.113380@i42g2000cwa.googlegr oups.com...
> I've been going round in circles here trying to get this to work and my
> ignorance of ASP is now showing me up.
>
> I want to construct a query string to allow me to filter entries to be
> displayed on a web page with respect to the date-entry contained in the
> database.
>
> i.e. an archived results page will show all entries where "my_date" is
> less than 'todays date'
>
> I have tried to do this by;
>
> Dim strSQL
> Dim showdate
>
> showdate = Date
>
> then...
>
> strSQL = "Select * FROM my_database WHERE my_date <" & showdate
>
> Although this does give a result, it has no actual bearing on todays
> date and wondered what strinkingly obvious this I'm doing wrong? when I
> use > i get all results displayed, when i use < I get none at all.
>
> thanks for any help
>




supasnail 10-30-2006 05:38 PM

Re: filter results to display those older than 'today'?
 
sorry, its an access database .mdb

S





Ray Costanzo [MVP] wrote:
> Please tell us what kind of database you're using.
>
> Ray at work
>
> "supasnail" <supasnail@gmail.com> wrote in message
> news:1162227897.221647.113380@i42g2000cwa.googlegr oups.com...
> > I've been going round in circles here trying to get this to work and my
> > ignorance of ASP is now showing me up.
> >
> > I want to construct a query string to allow me to filter entries to be
> > displayed on a web page with respect to the date-entry contained in the
> > database.
> >
> > i.e. an archived results page will show all entries where "my_date" is
> > less than 'todays date'
> >
> > I have tried to do this by;
> >
> > Dim strSQL
> > Dim showdate
> >
> > showdate = Date
> >
> > then...
> >
> > strSQL = "Select * FROM my_database WHERE my_date <" & showdate
> >
> > Although this does give a result, it has no actual bearing on todays
> > date and wondered what strinkingly obvious this I'm doing wrong? when I
> > use > i get all results displayed, when i use < I get none at all.
> >
> > thanks for any help
> >



Ray Costanzo [MVP] 10-30-2006 05:56 PM

Re: filter results to display those older than 'today'?
 
Format the date accordingly then, YYYY-MM-DD. See here:
http://www.aspfaq.com/show.asp?id=2023

Sample:

Function dtForAccess(d)
dtForAccess = Year(d) & "-" & Right("0" & Month(d), 2) & "-" & Right("0"
& Day(d), 2)
End Function

Ray at work


"supasnail" <supasnail@gmail.com> wrote in message
news:1162229938.318772.135680@f16g2000cwb.googlegr oups.com...
> sorry, its an access database .mdb
>
> S
>
>
>
>
>
> Ray Costanzo [MVP] wrote:
>> Please tell us what kind of database you're using.
>>
>> Ray at work
>>
>> "supasnail" <supasnail@gmail.com> wrote in message
>> news:1162227897.221647.113380@i42g2000cwa.googlegr oups.com...
>> > I've been going round in circles here trying to get this to work and my
>> > ignorance of ASP is now showing me up.
>> >
>> > I want to construct a query string to allow me to filter entries to be
>> > displayed on a web page with respect to the date-entry contained in the
>> > database.
>> >
>> > i.e. an archived results page will show all entries where "my_date" is
>> > less than 'todays date'
>> >
>> > I have tried to do this by;
>> >
>> > Dim strSQL
>> > Dim showdate
>> >
>> > showdate = Date
>> >
>> > then...
>> >
>> > strSQL = "Select * FROM my_database WHERE my_date <" & showdate
>> >
>> > Although this does give a result, it has no actual bearing on todays
>> > date and wondered what strinkingly obvious this I'm doing wrong? when I
>> > use > i get all results displayed, when i use < I get none at all.
>> >
>> > thanks for any help
>> >

>




supasnail 10-30-2006 05:59 PM

Re: filter results to display those older than 'today'?
 
I don't know if it makes any difference but I have the database field
set to date/time, and "short Date" and am using a
<%session.lcid=1046%> on the results page ( I know this is really for
Portugal but the 2057 for UK never displays as UK date format should,
not for me anyway.)
The Access database can be written to and read from happily and
displays the date correctly. I just dont seem to be able to work out
how to filter with respect to todays date.

S



An Access
supasnail wrote:
> sorry, its an access database .mdb
>
> S
>
>
>
>
>
> Ray Costanzo [MVP] wrote:
> > Please tell us what kind of database you're using.
> >
> > Ray at work
> >
> > "supasnail" <supasnail@gmail.com> wrote in message
> > news:1162227897.221647.113380@i42g2000cwa.googlegr oups.com...
> > > I've been going round in circles here trying to get this to work and my
> > > ignorance of ASP is now showing me up.
> > >
> > > I want to construct a query string to allow me to filter entries to be
> > > displayed on a web page with respect to the date-entry contained in the
> > > database.
> > >
> > > i.e. an archived results page will show all entries where "my_date" is
> > > less than 'todays date'
> > >
> > > I have tried to do this by;
> > >
> > > Dim strSQL
> > > Dim showdate
> > >
> > > showdate = Date
> > >
> > > then...
> > >
> > > strSQL = "Select * FROM my_database WHERE my_date <" & showdate
> > >
> > > Although this does give a result, it has no actual bearing on todays
> > > date and wondered what strinkingly obvious this I'm doing wrong? when I
> > > use > i get all results displayed, when i use < I get none at all.
> > >
> > > thanks for any help
> > >



Bob Barrows [MVP] 10-30-2006 06:18 PM

Re: filter results to display those older than 'today'?
 
supasnail wrote:
> I've been going round in circles here trying to get this to work and
> my ignorance of ASP is now showing me up.
>
> I want to construct a query string to allow me to filter entries to be
> displayed on a web page with respect to the date-entry contained in
> the database.
>
> i.e. an archived results page will show all entries where "my_date" is
> less than 'todays date'
>
> I have tried to do this by;
>
> Dim strSQL
> Dim showdate
>
> showdate = Date
>
> then...
>
> strSQL = "Select * FROM my_database WHERE my_date <" & showdate
>
> Although this does give a result, it has no actual bearing on todays
> date and wondered what strinkingly obvious this I'm doing wrong? when
> I use > i get all results displayed, when i use < I get none at all.
>
> thanks for any help

If you want today's date, then use the Date() function:

strSQL = "... WHERE my_date < Date"


--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.



supasnail 10-30-2006 06:45 PM

Re: filter results to display those older than 'today'?
 
Thanks Bob, thats perfect - I was on the right lines but you've allowed
me to put everything in the right place lol. Now,... on to my next
headache lol

thank you very much

S



Bob Barrows [MVP] wrote:
> supasnail wrote:
> > I've been going round in circles here trying to get this to work and
> > my ignorance of ASP is now showing me up.
> >
> > I want to construct a query string to allow me to filter entries to be
> > displayed on a web page with respect to the date-entry contained in
> > the database.
> >
> > i.e. an archived results page will show all entries where "my_date" is
> > less than 'todays date'
> >
> > I have tried to do this by;
> >
> > Dim strSQL
> > Dim showdate
> >
> > showdate = Date
> >
> > then...
> >
> > strSQL = "Select * FROM my_database WHERE my_date <" & showdate
> >
> > Although this does give a result, it has no actual bearing on todays
> > date and wondered what strinkingly obvious this I'm doing wrong? when
> > I use > i get all results displayed, when i use < I get none at all.
> >
> > thanks for any help

> If you want today's date, then use the Date() function:
>
> strSQL = "... WHERE my_date < Date"
>
>
> --
> Microsoft MVP -- ASP/ASP.NET
> Please reply to the newsgroup. The email account listed in my From
> header is my spam trap, so I don't check it very often. You will get a
> quicker response by posting to the newsgroup.




All times are GMT. The time now is 11:08 AM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57