Ask a Question related to Coldfusion Database Access, Design and Development.
-
drdave2 #1
mx 6.1 selecting smalldatetime
- just upgraded to 6.1 and now getting this error when trying to select
smalldatetime values, but only WITH ntext values..
can select either field individually but together they give me the error.
Macromedia]Numeric value out of range
SELECT request,date_created
FROM dbo.requests
any ideas??
drdave2 Guest
-
SQL: Selecting everything BUT
I have a table with 439 records in it. This table is linked to another, which is related to a 3rd via a 4th relationship table. I have a gigantic... -
selecting different css
stu75 wrote: You could just attach a print media style sheet to accomplish this and won't need another page: Take a look at these articles:... -
Selecting
I want to read the Elements of the Subject of a client certificate sent to a Web Service via HTTPS. This can be done by the following code... -
<<Error converting data type char to smalldatetime>>
Hi All (IIS 5, SQL 2k, Win 2k) I'm stumped and can't find where I would be "mis-converting" data. I receive the following error ONLY when I update... -
cast from datetime type to smalldatetime type?
Hi, How can I cast from datetime type to smalldatetime type. I get the records from a table which has got a datetime type column but I want to... -
BKBK #2
Re: mx 6.1 selecting smalldatetime
Looks like a driver bug. However, the cause can also be invalid values in a
date column. Check, using
<cfquery name="q" etc>
select date_created
from requests
</cfquery>
<cfoutput query="q">
<cfif NOT isDate(date_created)>
Invalid date in DB: #date_created# <br>
</cfif>
</cfoutput>
BKBK Guest
-
PaulH *ACE* #3
Re: mx 6.1 selecting smalldatetime
drdave2 wrote:
its usually a good idea to put the Ntext or text column last in the select list:> - just upgraded to 6.1 and now getting this error when trying to select
> smalldatetime values, but only WITH ntext values..
SELECT date_created,request
FROM dbo.requests
PaulH *ACE* Guest
-
GaryGlitter #4
Re: mx 6.1 selecting smalldatetime
thx for the replies, in the administrator there was a checbox for "return timestamp as string", unchecked that and Boo YeaH!
back in business..
Dave
GaryGlitter Guest



Reply With Quote

