Details
Assignee
Michael OffnerMichael OffnerReporter
Jürg AndereggJürg AndereggPriority
NewLabels
New Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Details
Details
Assignee
Michael Offner
Michael OffnerReporter
Jürg Anderegg
Jürg AndereggPriority
Labels
New Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Created 10 April 2018 at 12:17
Updated 2 March 2021 at 11:20
Please run this very simple code:
<cfset myQuery=QueryNew("artNr") />
<cfset QueryAddRow(myQuery,2) />
<cfset QuerySetCell(myQuery,"artNr","013",1) />
<cfset QuerySetCell(myQuery,"artNr","0013",2) />
<cfdump var="#myQuery#">
<cfoutput query="myQuery" group="artNr">
#artNr#<br />
</cfoutput>
There are two records inserted; one with artNr "013" and one with "0013". If you output them grouped by "artNr", only the first one is shown. Actually, they are different and both should be shown. Works with ACF, but not with Lucee...