I have a BeginDate and EndDate in a database. I want to be able to list those records if todays date is within the date range of BeginDate and EndDate. I am unsure of the coding on this. Has anyone done this and can give me some help? Thanks.
Depends on the database platform as to exactly what function you'd use, but essentially:
SELECT cols
FROM table
WHERE now() > BeginDate
AND now < EndDate
That's all there is to it.
Some databases let you do BETWEEN clauses, so even neater
WHERE now() BETWEEN StartDate and EndDate.
Just be careful to do some testing as to what happens when today *is* the end or start date, you may want them included or excluded depending on your requirements.
No, you shouldn't have to convert anything.
Assuming "Get(CurrentDate)" is correct (which as I said was from a quick Google, I've never used the DB you're using) it will return a date object. Assuming your dates are stored in the database as dates as well and not strings or something silly, it should be fine.
What does the error say?
North America
Europe, Middle East and Africa
Asia Pacific