
| Key: |
FC-921
|
| Type: |
Bug
|
| Status: |
Resolved
|
| Resolution: |
Fixed
|
| Priority: |
Major
|
| Assignee: |
Unassigned
|
| Reporter: |
Ian Redding
|
| Votes: |
0
|
| Watchers: |
0
|
|
If you were logged in you would be able to see more operations.
|
|
|
|
CREATE TABLE projectName.ruleNews( bArchive number default false NOT NULL , bMatchAllKeywords number default false NULL ,
datetimelastupdated date NULL ,
displayMethod varchar2(255) default 'displayTeaserBullets' NOT NULL ,
intro varchar2(255) default '' NULL ,
label nvarchar2(255) default '' NULL ,
metadata nclob default '' NULL ,
numItems number default 5 NOT NULL ,
numPages number default 1 NOT NULL ,
objectID varchar2(50) NOT NULL ,
suffix varchar2(255) default '' NULL )
******* the "false" in the 1st line must be "0" to create this table in both places
CREATE TABLE projectName.ruleNews( bArchive number default 0 NOT NULL , bMatchAllKeywords number default 0 NULL ,
|
|
Description
|
CREATE TABLE projectName.ruleNews( bArchive number default false NOT NULL , bMatchAllKeywords number default false NULL ,
datetimelastupdated date NULL ,
displayMethod varchar2(255) default 'displayTeaserBullets' NOT NULL ,
intro varchar2(255) default '' NULL ,
label nvarchar2(255) default '' NULL ,
metadata nclob default '' NULL ,
numItems number default 5 NOT NULL ,
numPages number default 1 NOT NULL ,
objectID varchar2(50) NOT NULL ,
suffix varchar2(255) default '' NULL )
******* the "false" in the 1st line must be "0" to create this table in both places
CREATE TABLE projectName.ruleNews( bArchive number default 0 NOT NULL , bMatchAllKeywords number default 0 NULL ,
|
Show » |
|
it created all our tables & got to the login screen,
but does not login with: u= farcry p= farcry
in table DMuser there is farcry in both fields?? but no login?
*** Fix Bug ***
File: FarCry\core\packages\fourq\gateway\OracleGateway.cfc
FIX ON LINE = 193
<cfif len(trim(defaultValue))>
<!--- added by bowden 8/23/2007 to prevent code like:
--->
<cfif trim(defaultValue) is "true">
<cfset defaultValue = "default 1" />
<cfelseif trim(defaultValue) is "false">
<cfset defaultValue = "default 0" />
<cfelse>
<cfset defaultValue = "default #defaultValue#" />
</cfif>
<!--- end of add by bowden 8/23/2007 --->
<cfelse>
<cfset defaultValue = "" />
</cfif>