Re: Cold Fusion 500 Error
Hi All. Another thing I wanted to post here for Linux users: Apache MUST be stopped before Cold Fusion is started. This might seem a bit counterintuitive to *nix users as we are used to Apache routing...
View ArticleRe: CFPDF Thumbnail Quality
You are using the hires option, right?The scale issue is pretty well known, I think, not sure if there's a solution to that. Rumor has it that ColdFusion 11 (release date unknown) has a completely...
View ArticleRe: CFPDF Thumbnail Quality
Thanks for your answer, I will look at that link. I finaly used this UDF : http://pastebin.com/6gmmBT6U And it is much better. It probably use the same technic as the proposed link.I am running CF9i...
View ArticleIN statment
I have the table: IDcondition_idproperty_id1c_3b_12c_13b_23c_3b_44c_13b_15c_3b_26c_4b_1 I need to select all properties with condition_id c_3 and c_13 not just c_3 or c_13 (I expect in the result it...
View ArticleRe: IN statment
Can you show us your exact cfquery statement? Hard to believe those results! The actual syntax you want would be:SELECT *FROM tableWHERE condition_id='c_3' AND condition_ID='c_13') The IN operator is...
View ArticleRe: IN statment
Thank you REEDPOWELLI did try this: SELECT * FROM table WHERE <cfloop list="#condition_id#" index="iii">...
View ArticleRe: IN statment
Your question (or English) was a bit vague, but here goes: If you want just c_3 and c_13's returned SELECT id,condition_id,property_idFROM tableWHERE condition_id = 'c_3' OR condition_id = 'c_13' But...
View ArticleRe: IN statment
Two things: One, the CFLOOP code is not equivalent to the code I had written. I cannot honestly tell you exactly what that the CFLOOP code is producing. But the 2nd bit of code you showed should work,...
View Articlecfsearch
Hellow everyone, I want to be able to search the whole keyword not just the part of this. For example, if user enters a keyword "material", i want the results return the list of document that contain...
View ArticleRe: IN statment
Yes, I did run it in the SSMS, the same result, 0 records. Here is actual table: activities_bus_idintactivities_bus_namenvarchar(250)activities_bus_busidintactivities_bus_amidint And data:...
View ArticleRe: IN statment
ok, seeing the data makes all the difference. Also, I think that your description of what you were looking for was not quite correct. What you want are all records with and amid ID of 3 and all...
View ArticleRe: IN statment
Sorry if I wasn't clear enough. What I need is to select companies (activities_bus_busid) who is doing both Fishing and Golf. In our case it is companies 9 and 13If I use IN operator I'm getting all...
View Articleget cfgrid to stop rounding numbers, need 2 decimal places
Hi all! I'm having an issue where cfgridcolumn takes the number 65.20 and displays it as 65.2 because it appears to always round to 1 digit after the decimal. How do I get it to display "65.20"? (two...
View ArticleRe: IN statment
ok. wow. interesting table design for this purpose. Here is what you are going to have to do, more or less (ie, I have not done this in SSMS for you, so it might need some fine tuning): SELECT...
View ArticleTranslation of Variable Output From CFQUERY
I'm not highly technical, and this is probably something easy, but here is my dilemma. First, define some variables: <cfset datasource = '#MyDatabase#'><cfset query_tbl =...
View ArticleRe: Translation of Variable Output From CFQUERY
Ok, so here's what you would do usually, as you know: <cfoutput>#cfqGetItems.actual_fieldname#</cfoutput> Logically this is wrong, but ColdFusion behaviour won't give you an error if your...
View ArticleRe: get cfgrid to stop rounding numbers, need 2 decimal places
Are you using HTML mode on the grid? I've found it impossible to format the numbers in a numeric field. Same applies for any decent date formatting, as it doesn't seem to work properly. My solution is...
View ArticleRe: Translation of Variable Output From CFQUERY
Of course if you're looping over your query using <cfoutput query="foo"> then you don't need to specify the [currentrow] attribute too (although there's no harm in doing so, it's just overkill)....
View ArticleCKeditor and cfm
This is probaly a begineers question so apologies if it is a bit basic. It could also be a MySql fix rather than Colfusion! I have a textarea field on a web form using the popular text editor...
View Article