Ask a Question related to Coldfusion Database Access, Design and Development.
-
whatsaname #1
Needs help with query
I urgently require some help with the following.
I have a input page for two DATES, one date_start and one date_end.
These to variables i want to have them woring in my query. but the data will
not be loaded into an EXCEL, it stays blank.
when i use #createODBCDate("2004-01-01")# AND #createODBCdate("2004-05-04")#
then it will load the data.
But i do want to have our customers entering the start and end date for this
report download.
What do i do wrong ???
<cfquery name="laden" datasource="issue">
SELECT * FROM tbl_issue
WHERE tbl_issue.region = 'EMEA' AND tbl_issue.date_issue BETWEEN
#Form.date_start# AND #Form.date_end#
</cfquery>
whatsaname Guest
-
Query of Queries on query New type query
In CF5 we have a page that creates a query, using queryNew and querySetCell and the like, we then used dbtype="query" and gave it's name so we could... -
query of query throwing weird exception
One workaround: I had added rows to a cfsearch query, and set a numeric value in custom1 field that that query provides. A query of queries... -
Convert a query to a list, or find an item in a query
Hi All, I am using CFPOP to retrieve mail from a server, then delete each message after I retrieve it. What I want to do is to check that I don;t... -
CAML Query: Multiple Query Fields Issue
I need to Create a CAML Query Dynamically with VB to a Sharepoint WebService GetListItems Method. The User Could Select 1 to X Number of IDs... -
BCP query out executed by xp_cmdshell works fine from query analyzer but fails from VB Component
Hi all, I have a stored procedure which returns a vast number of record and i have to write the output into a csv file. I'm using BCP utility to... -
prems28 #2
Re: Needs help with query
Hi,
try and enclose the dates within single qoutes. It should work.
Prem
prems28 Guest
-
whatsaname #3
Re: Needs help with query
Yes putting the dates into the code is working, but i want to get date input
from the user working
The dates i'm getting is #Form.date_start# and Form.date_end#
How do i get those two variable input working in the query, as only the data
between these two dates are required.
whatsaname Guest
-
philh #4
Re: Needs help with query
Have you tried
'#CreateODBCDate(form.date_start)#' and '#CreateODBCDate(form.date_end)#'
philh Guest



Reply With Quote

