Ask a Question related to Coldfusion Database Access, Design and Development.
-
tybowman #1
Check for End of Recordset ?????
Remember RS.EOF in ASP? How do you test for the end of a recordset to return
true in CFML?
For example this never returns false and the else statement never executes:
cfoutput query="RS"
cfif isDefined("RS.RecordID")
...gimme all you got...
cfelse
...tell me you ain't got none...
/ctif
/cfoutput
tybowman Guest
-
Spell Check and Grammer Check
Hello, Does anybody know about some good spell checker/grammer checker for html/asp pages? Thank you, Regards, Raj. -
Turning off Check in / Check out feature
How can I turn off the check in / check out feature? Can't seem to find it in the Contribute HELP. Thanks! -
check if a recordset exists
in asp is there a way to determine wether a recordset exists or not . the problem is i have On Error Resume Next on my page and if duff data is... -
Check to see if Check Boxes are Checked
How do I check to see if a checked box is check on the following page? This is what I have. What am I doing wrong? <%If... -
RecordSet.Move or RecordSet.AbsolutePosition??
Hi, I'm trying to use either one of these methods to position the cursor in a specific position inside a recordset, but neither one seems to... -
The ScareCrow #2
Re: Check for End of Recordset ?????
You don't need to check
cfoutput query="RS"
...gimme all you got...
/cfoutput
cfif RS.RecordCount Is 0
...tell me you ain't got none...
/cfif
if there are records the cfoutput will be executed and the following cfif will
not and visa versa.
Ken
The ScareCrow Guest
-
raulriera #3
Re: Check for End of Recordset ?????
Hmmm thats good if it dosent retuns any values, but if the query does... you can use this.. (this is what I use)
<cfif query-CurrentRow IS query.RecordCount>
raulriera Guest



Reply With Quote

