CF will only lowercase keys, ie:

<cfset s = structNew()>
<cfset s["Moo"] = "Zoo">
<cfwddx action="" input="#s#"  toplevelvariable="root">

In this example, Moo gets lowercased, but Zoo does not. If you need to
preserve the case you could simply modify your data a bit:

<cfset s = structNew()>
<cfset s["Moo"] = structNew()>
<cfset s["Moo"].data = ""> <cfset s["Moo"].origkey = "Moo">

A bit of a hack but it will work.

In CFMX, if you convert a query, the column names case will be preserved.
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Reply via email to