Ask a Question related to Coldfusion Database Access, Design and Development.
-
Jared13 #1
SQL query missing only date data elements
I just upgraded from CF 5 to CF 6.1 and am having an issue with any query that
pull a date from the database. I am using Oracle 9i as the database.
I am able to insert and update, but I can not pull any dates.
Note: In my data table all of the fields have data in them.
Here is an example of the query:
<cfquery name="Get_XTF" datasource="source">
SELECT XTF, Role, Email, Expires, attempt1, password as proper_pass
FROM source.Users
WHERE (login='#Login#')
</cfquery>
Note: that the "Expires" and "attempt1" fields are both date fields.
The code for the output is:
<cfoutput query="Get_XTF">
#XTF#<br>
#Role#<br>
#Email#<br>
#Expires#<br>
#attempt1#<br>
#proper_pass#
</cfoutput>
The output looks like such:
0
R
[email]me@email.com[/email]
newpassword_1
Thanks
Jared13 Guest
-
Some MIssing Elements
Dear all - I need a rescue here. I'm having trouble on some machines (running windows XP and internet explorer with player 9) with my text. ... -
Query of Query Missing Some Data
Hey Folks, I'm not sure that my message title or topic summary make much sense, but I'll attempt to expound upon them here and with any luck someone... -
Missing something in this query
have a list of symptoms - I want a user to be able to click on the first letter of their symptom. Next a list of all the symptoms with the... -
date query problem, date in variable
I am using the following query : $query_archief = "SELECT * FROM vacatures where dd_eind_plaatsing < $dd_eind_plaatsing_archief1" note:... -
missing fonts in Elements 2
Eric, Elements uses whatever fonts you have installed in your System Font folder. If the font you want listed there? -
paross1 #2
Re: SQL query missing only date data elements
Are you using an ODBC socket connection by any chance? If so, check the
advanced settings for your datasource in ColdFusion administrator and make sure
that the Return TimeStamp as String parameter is unchecked.
Phil
paross1 Guest



Reply With Quote

