Forums
This topic is locked
"Latest updates" page ...
Replies
Replied 03 Dec 2001 19:52:54
03 Dec 2001 19:52:54 Joel Martinez replied:
well, I think you should be able to use the "dateadd" function to help you out here... the sql statement should look something like this:<pre id=code><font face=courier size=2 id=code>SELECT * FROM thetable WHERE datestamp >= 'mm_Date' ODER BY datestamp DESC</font id=code></pre id=code>
mm_Date = dateadd("dd",-5,date)
this would set the mm_Date variable to 5 days prior to today (note: double check syntax of dateadd... it might be wrong)
that should give you theresults you want.
Joel Martinez [ ]
----------
E-Commerce Concepts with Ultradev...pre-order yours at
www.basic-ultradev.com/ecomm_concepts/
mm_Date = dateadd("dd",-5,date)
this would set the mm_Date variable to 5 days prior to today (note: double check syntax of dateadd... it might be wrong)
that should give you theresults you want.
Joel Martinez [ ]
----------
E-Commerce Concepts with Ultradev...pre-order yours at
www.basic-ultradev.com/ecomm_concepts/
Replied 08 Dec 2001 13:06:45
08 Dec 2001 13:06:45 jon badda replied:
<BLOCKQUOTE id=quote><font size=1 face="Verdana, Arial, Helvetica" id=quote>quote:<hr height=1 noshade id=quote>
well, I think you should be able to use the "dateadd" function to help you out here... the sql statement should look something like this:<pre id=code><font face=courier size=2 id=code>SELECT * FROM thetable WHERE datestamp >= 'mm_Date' ODER BY datestamp DESC</font id=code></pre id=code>
mm_Date = dateadd("dd",-5,date)
this would set the mm_Date variable to 5 days prior to today (note: double check syntax of dateadd... it might be wrong)
<hr height=1 noshade id=quote></BLOCKQUOTE id=quote></font id=quote><font face="Verdana, Arial, Helvetica" size=2 id=quote>
erm, i dont think its wrong in theory ... but it doesnt work - or perhaps im not doing it right.
what im doing is
<pre id=code><font face=courier size=2 id=code>
SELECT *
FROM thetable
WHERE datestampfield >= 'mm_Date'
ORDER BY datestampfield DESC</font id=code></pre id=code>
and then
[/code]mm_Date = dateadd("d",-5,now)[/code]
(which i put in the critera)
This isnt working ... Ive been inserting this code into the recordset dialog, except im getting datatype mismatch errors ...
can you see anything wrong with this?
well, I think you should be able to use the "dateadd" function to help you out here... the sql statement should look something like this:<pre id=code><font face=courier size=2 id=code>SELECT * FROM thetable WHERE datestamp >= 'mm_Date' ODER BY datestamp DESC</font id=code></pre id=code>
mm_Date = dateadd("dd",-5,date)
this would set the mm_Date variable to 5 days prior to today (note: double check syntax of dateadd... it might be wrong)
<hr height=1 noshade id=quote></BLOCKQUOTE id=quote></font id=quote><font face="Verdana, Arial, Helvetica" size=2 id=quote>
erm, i dont think its wrong in theory ... but it doesnt work - or perhaps im not doing it right.
what im doing is
<pre id=code><font face=courier size=2 id=code>
SELECT *
FROM thetable
WHERE datestampfield >= 'mm_Date'
ORDER BY datestampfield DESC</font id=code></pre id=code>
and then
[/code]mm_Date = dateadd("d",-5,now)[/code]
(which i put in the critera)
This isnt working ... Ive been inserting this code into the recordset dialog, except im getting datatype mismatch errors ...
can you see anything wrong with this?
Replied 08 Dec 2001 14:56:12
08 Dec 2001 14:56:12 Owen Eastwick replied:
I think the problem is that you are looking for mm_Date as a text string. Also you need to define the variable mm_Date brfore using it as part of the WHERE clause.
First:
mm_Date = dateadd("d",-5,now())
Then:
SELECT * FROM thetable WHERE datestampfield >= mm_Date ORDER BY datestampfield DESC
Regards
Owen.
Multiple Parameter UD4 / Access 2000 Database Search Tutorial:
www.tdsf.co.uk/tdsfdemo
First:
mm_Date = dateadd("d",-5,now())
Then:
SELECT * FROM thetable WHERE datestampfield >= mm_Date ORDER BY datestampfield DESC
Regards
Owen.
Multiple Parameter UD4 / Access 2000 Database Search Tutorial:
www.tdsf.co.uk/tdsfdemo
Replied 09 Dec 2001 11:40:51
09 Dec 2001 11:40:51 jon badda replied:
ok, im still not getting this. Im getting new errors. In my advanced recordset dialog box I have:
SELECT *
FROM qryProducts
WHERE productLastupdate >= mm_Date
ORDER BY productLastUpdate DESC
and then where i declare the variables I have:
Name
mm_date
Default Value:
dateadd("d",-5,now())
Runtime Value:
dateadd("d",-5,now())
and my SQL looks like this:
<%
Dim rsLatest__mm_Date
rsLatest__mm_Date = "dateadd("d",-5,now())"
if (dateadd("d",-5,now()) <> "" then rsLatest__mm_Date = dateadd("d",-5,now())
%>
<%
set rsLatest = Server.CreateObject("ADODB.Recordset"
rsLatest.ActiveConnection = MM_connUltraGo_STRING
rsLatest.Source = "SELECT * FROM qryProducts WHERE productLastupdate >= " + Replace(rsLatest__mm_Date, "'", "''" + " ORDER BY productLastUpdate DESC"
rsLatest.CursorType = 0
rsLatest.CursorLocation = 2
rsLatest.LockType = 3
rsLatest.Open()
rsLatest_numRows = 0
%>
All this works fine when i do a test in the recordset and I was delighted when it worked.
Except now when I test the page im getting this error:
Expected end of statement
/esquared/latestupdate.asp, line 11
rsLatest__mm_Date = "dateadd("d",-5,now())"
------------------------------^
This is driving me insane, I hate these damn annoying bugs that cant be resolved.
SELECT *
FROM qryProducts
WHERE productLastupdate >= mm_Date
ORDER BY productLastUpdate DESC
and then where i declare the variables I have:
Name
mm_date
Default Value:
dateadd("d",-5,now())
Runtime Value:
dateadd("d",-5,now())
and my SQL looks like this:
<%
Dim rsLatest__mm_Date
rsLatest__mm_Date = "dateadd("d",-5,now())"
if (dateadd("d",-5,now()) <> "" then rsLatest__mm_Date = dateadd("d",-5,now())
%>
<%
set rsLatest = Server.CreateObject("ADODB.Recordset"
rsLatest.ActiveConnection = MM_connUltraGo_STRING
rsLatest.Source = "SELECT * FROM qryProducts WHERE productLastupdate >= " + Replace(rsLatest__mm_Date, "'", "''" + " ORDER BY productLastUpdate DESC"
rsLatest.CursorType = 0
rsLatest.CursorLocation = 2
rsLatest.LockType = 3
rsLatest.Open()
rsLatest_numRows = 0
%>
All this works fine when i do a test in the recordset and I was delighted when it worked.
Except now when I test the page im getting this error:
Expected end of statement
/esquared/latestupdate.asp, line 11
rsLatest__mm_Date = "dateadd("d",-5,now())"
------------------------------^
This is driving me insane, I hate these damn annoying bugs that cant be resolved.
Replied 09 Dec 2001 13:15:36
09 Dec 2001 13:15:36 Owen Eastwick replied:
In the code view try this:
GET RID OF THIS:
<%
Dim rsLatest__mm_Date
rsLatest__mm_Date = "dateadd("d",-5,now())"
if (dateadd("d",-5,now()) <> "" then rsLatest__mm_Date = dateadd("d",-5,now())
%>
THEN MODIFY THIS LINE, FROM THIS:
rsLatest.Source = "SELECT * FROM qryProducts WHERE productLastupdate >= " + Replace(rsLatest__mm_Date, "'", "''" + " ORDER BY productLastUpdate DESC"
TO THIS:
rsLatest.Source = "SELECT * FROM qryProducts WHERE productLastupdate >= " & DateAdd("d",-5,Now()) & " ORDER BY productLastUpdate DESC"
Also som things to bear in mind.
What format is the date field "productLastupdate" in your database? mm/dd/yyyy or dd/mm/yyyy etc.
Check that DateAdd("d",-5,Now()) is providing a date in a similar format, you can do this by just displaying it on a test page: <% = DateAdd("d",-5,Now()) %>
Regards
Owen.
Multiple Parameter UD4 / Access 2000 Database Search Tutorial:
www.tdsf.co.uk/tdsfdemo
GET RID OF THIS:
<%
Dim rsLatest__mm_Date
rsLatest__mm_Date = "dateadd("d",-5,now())"
if (dateadd("d",-5,now()) <> "" then rsLatest__mm_Date = dateadd("d",-5,now())
%>
THEN MODIFY THIS LINE, FROM THIS:
rsLatest.Source = "SELECT * FROM qryProducts WHERE productLastupdate >= " + Replace(rsLatest__mm_Date, "'", "''" + " ORDER BY productLastUpdate DESC"
TO THIS:
rsLatest.Source = "SELECT * FROM qryProducts WHERE productLastupdate >= " & DateAdd("d",-5,Now()) & " ORDER BY productLastUpdate DESC"
Also som things to bear in mind.
What format is the date field "productLastupdate" in your database? mm/dd/yyyy or dd/mm/yyyy etc.
Check that DateAdd("d",-5,Now()) is providing a date in a similar format, you can do this by just displaying it on a test page: <% = DateAdd("d",-5,Now()) %>
Regards
Owen.
Multiple Parameter UD4 / Access 2000 Database Search Tutorial:
www.tdsf.co.uk/tdsfdemo
Replied 10 Dec 2001 14:05:12
10 Dec 2001 14:05:12 jon badda replied:
Thanks for that ... the code works, sorta.
user.7host.com/esquared/latestupdate.asp
Im getting ALL records now. deep sigh.
The test works, the dates uses mm/dd/yyyy <BTW, working with Date() rather than Now()>
I cant see a reason why its doing that except perhaps that its not reading the dateadd function.
Repeat regions wouldnt have an effect would they?
user.7host.com/esquared/latestupdate.asp
Im getting ALL records now. deep sigh.
The test works, the dates uses mm/dd/yyyy <BTW, working with Date() rather than Now()>
I cant see a reason why its doing that except perhaps that its not reading the dateadd function.
Repeat regions wouldnt have an effect would they?