Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
Starman9999 #1
Strange query of ntext behavior
If a query explicitly returns an ntext field, its value is returned. If
however, all fields are returned, the ntext fields don't return anything. Any
idea as to what is going on here? Thanks.
<cfquery name="qGetSchools" datasource="mydatasource">
Select * from guideschools where id=13045
</cfquery>
<cfquery name="qGetSchool2" datasource="mydatasource">
Select faculty from guideschools where id=13045
</cfquery>
<cfoutput>Select * = #qGetSchools.faculty#</cfoutput><br>
<cfoutput>Select faculty = #qGetSchool2.faculty#</cfoutput>
Starman9999 Guest
-
Strange behavior of webservices
Hi! I found same strange behavior of ASP.NET. It is possible this is the bug. Follow the steps: I create the simple service,... -
Strange behavior
The problem seems to be in c code calling ruby calling c code. ======== start test.rb puts "about to require curses" require "curses" puts... -
Strange behavior of $.
Apparently $. is not always set correct (see second ruby 1liner). Is this a bug? 12:12:42 : cat -n n 1 2 3 BAR="hello" 4 12:12:47 : ruby... -
Why strange IF...ELSE behavior
Hi all, I'm getting a strange result with the following IF statement: $bar = ($foo == 'last') ? true : false; In my script $foo normaly has... -
unique()????? strange behavior
mearnh@acxiom.com (mike) wrote in message news:<db323ee1.0306251150.685546ef@posting.google.com>... If I'm right, you're missing a reset() here...... -
PaulH #2
Re: Strange query of ntext behavior
works for me (assuming you mean sql server).
what ver of cf? if mx, got the updaters? what db driver are you using?
PaulH Guest
-
Starman9999 #3
Re: Strange query of ntext behavior
Ok, found out the problem. I was using the ODBC SQL driver. Now I've switched to the direct SQL driver. Works like a champ!
Starman9999 Guest



Reply With Quote

