How to INSERT INTO a specific row?
I have a form with a calendar at the top, below it is a list of items each with a check box. Here is a wonderful visual of it - CalendarCheckbox | Col | Col | ColCheckbox | Col | Col | ColCheckbox |...
View ArticleRe: I need my services available from...well... everywhere
BKBK I think you hit the nail square on the head. And after doing research into other frameworks, they DO pass the application's variable scope into other objects in order to share their information....
View ArticleRe: How to INSERT INTO a specific row?
An INSERT operation will *always* do just that, insert rows into a table. Is sounds like maybe you should be doing an UPDATE operation instead. Can you give a bit more explanation on the database...
View ArticleRe: Font's for CFDocument PDF not consistent
Ok, I have come up with a work-around. Instead of using pt for the font-size, either use em, px or percent. This will require a bit (tons) of work for us, but it works the same way on both servers...
View ArticleHow to upgrade CF9 ( Linux - RHEL 6.0 ) to CF 10?
Hello, I have been unable to find any instructions on how to do an upgrade from CF9 ( Linux - RHEL 6.0 ) to CF 10. I have a CF10 full copy and license yet there does not seem to be an upgrade option...
View ArticleInstalling on MacOS Maverics
Getting this message when installing the package. "Adobe ColdFusion 10" can't be opened because it is from an unidentified developer. Is there a workaround?
View ArticleRe: cfcompile
Hello BKBK, Thank you for your response. I upgraded to CF10, and installed the "Mandatory CF10 Update" and all updates to 13. I made the modification in the cfcompile.bat file as you suggested, but it...
View ArticleRe: binary data in a form field gets changed
Just an update...I thought I had found the solution to my last question by myself as I found the function GetHttpRequestData().I was wrong! When I tried the follwing <cfset x =...
View ArticleRe: binary data in a form field gets changed
DonPedroElBuenoI wrote: Umhum, I don't really understand what the purpose of that file upload is (which may just be due to the fact that I'm far away from being a CF-expert).Anyway, when I tried it, I...
View ArticleRe: cfcompile
There is the following line in the cfcompile.bat file of CF 10 set CFUSION_HOME=%~dp0%\.. I let it be. In fact, I use the default file that ships with CF 10. To recreate your scenario, I copied some...
View ArticleRe: MySQL query or CF code to “Flag” a group of query results based on a...
SELECT ACCOUNT_ID, SUBSCRIBER_ID, PKG_CODE, IF(SUBSCRIBER_ID IN (SELECT SUBSCRIBER_ID FROM Accounts WHERE ACCOUNT_DESC LIKE '%Eye%' AND PKG_CODE = 'Y'), 1, 0) AS flag FROM...
View ArticleRe: binary data in a form field gets changed
DonPedroElBuenoI wrote: I thought I had found the solution to my last question by myself as I found the function GetHttpRequestData().I was wrong! Indeed. GetHttpRequestData().content is a...
View ArticleRe: binary data in a form field gets changed
DonPedroElBuenoI wrote: Interesting observation: CF apparently doesn't consider the content of my form field as being binary. When I try the function BinaryEncode() on the form field, I get the error...
View ArticleRe: binary data in a form field gets changed
Thats not what I wanted... <cfset fieldContent = form.userData> ... this only gets me the content of the formfield userData, but what I'm trying to get here is the complete post as it was sent by...
View ArticleRe: binary data in a form field gets changed
From what I have just said, x.content is a string, not a binary. Therefore the else-block of this code will run.Well actually the manual says the following about GetHttpRequestData().content:Raw...
View ArticleRe: MySQL query or CF code to “Flag” a group of query results based on a...
@BKBK, thanks for the SubQuery.. that did the trick!
View ArticleRe: binary data in a form field gets changed
You are right. I have had a look at the manual. With Content-Type = multipart/form-data, ColdFusion indeed promises to return a binary. Since it returns zero output in your case, this can only mean...
View ArticleRe: MySQL query or CF code to “Flag” a group of query results based on a...
Cheers! I have just seen something that could make it more efficient, namely SELECT DISTINCT SUBSCRIBER_ID
View ArticleRe: cfcompile
Hello BKBK,Here is the code to one of the very simple documents:* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *<cfsetting...
View Article