Possible Bug: Setting currentRow variable
My organization recently updated from CF2018 to CF2021 and I've encountered some odd behavior for which Google has been unable to provide an answer. The following line of code started throwing an error:
<cfset queryName.currentRow += queryName2.numberOfLines>The error is:
There is a problem in the column mappings specified in the columnMap structure.The query attribute input does not contain any column by the name of currentRow. Even a simpler test throws the same error:
<cfset queryName.currentRow = '10'>I cannot figure out if this was an intentional change between CF2018 and CF2021 or a bug. I do know that it was not throwing an error in CF2018. Has anyone encountered something like this?
