BBeru wrote:
>
>
> Note the "default false" extra parameters
>
>
The "default false" isn't an extra parameter. It should be default 0
(that's zero) instead. Here's a fix from bowden (I can't find the post
right now) that worked for me. Add the following code to the
generateDeploymentSQLArray method of
core/packages/fourq/gateway/Oraclegateway.cfc. It is around line 192. Add
it right after "<cfif len(trim(defaultValue))>:
<!--- added by bowden 8/23/2007 to prevent code error --->
<cfif trim(defaultValue) is "true">
<cfset defaultValue = "1" /> <!--- Bill changed from
"default 1" --->
<cfelseif trim(defaultValue) is "false">
<cfset defaultValue = "0" /><!--- Bill changed from
"default 0" --->
<cfelse>
<cfset defaultValue = "#defaultValue#" /> <!--- changed
from "default #defaultValue#" --->
</cfif>
<!--- end of add by bowden 8/23/2007 --->
bowden's code originally had defaultValue="default 1" and "default 0" in it
but that was putting something like "default default 1" in the sql.
Regards, Bill
--
View this message in context:
http://www.nabble.com/FarCry-4.0.3-and-Oracle--anyone-successfully-installed--tf4379737s621.html#a12555098
Sent from the FarCry - Dev mailing list archive at Nabble.com.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"farcry-dev" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/farcry-dev?hl=en
-~----------~----~----~----~------~----~------~--~---