Adam and David,
How is everything going? I have not seen much PLUM activity so I would bet you are pretty busy with other things right now. I just wanted to let you know that there is a small error in the verity.cfc code generated when you create a new collection.
The switch statement  is generated using the current value of  #Application.dbPlatform# instead of "#Application.dbPlatform#" as shown below.

<cfswitch _expression_="Oracle9i">
        <cfcase value="SQLServer">
            ContentItemID + ',' + cast(Page as varchar(10)) AS KeyValue,
        </cfcase>
        <cfcase value="Access">
            ContentItemID & ',' & Page AS KeyValue,
        </cfcase>
        <cfcase value="Oracle9i">
            ContentItemID || ',' || Page AS KeyValue,
        </cfcase>
        <cfdefaultcase>
            ContentItemID + ',' + cast(Page as varchar(10)) AS KeyValue,
        </cfdefaultcase>
    </cfswitch>

 Hope to hear more from you guys soon.

 Thanks,
 Frederick

Reply via email to