Ask a Question related to Macromedia ColdFusion, Design and Development.
-
_aggregate #1
CF Error
Im getting this error
[Macromedia][SQLServer JDBC Driver][SQLServer]Syntax error converting the
varchar value ''2'' to a column of data type int.
This is the code
<cfset Session.AppID = "#url.AppID#">
<cfquery name="act_AssingAppRights.cfm" datasource="#request.dsn#">
INSERT INTO AI_UserPermission
(ApplicationID,IDModule,UserID)
VALUES ('#session.AppID#','1','#url.userID#')
</cfquery>
_aggregate Guest
-
Error Message "A drawing error ocurrred which is probably due to an out-of-memory condition. Try qu
I am running Acrobat Reader 5.0 on a Mac Powerbook running OS 9.2 and keep getting "A drawing error occurred which is probably due to an out of... -
Error 403 Failed to read heders Error for long-runningCFMAIL and CFINDEX command
I have two different pages with long-running scripts on which I am recieving the following error: Error - 403 Failed to read headers to server:... -
Error Creating Control: Parser Error DocHeader does not have a property named 'cc3:MyItems'
I am having problems getting this webcontrol working properly. Everything else works fine except having items. So here is the low-down on the... -
Unexpected error. A trappable error (C0000005) occurred in an external object.
Hi Elvin, After doing some reseaarch on this problem, I found there is a lot of issues which may cause the problem, for example, incorrect access... -
An error occurred while try to load the string resources (GetModuleHandle failed with error -2147023888)
Hello, on one of our customers servers we get following error on first ASPX-page: An error occurred while try to load the string resources... -
mxstu #2
Re: CF Error
If the columns ApplicationID,IDModule,UserID have a numeric data type don't use
single quotes around the values:
INSERT INTO AI_UserPermission (ApplicationID,IDModule,UserID)
VALUES (#session.AppID#, 1, #url.userID# )
mxstu Guest



Reply With Quote

