Fixed
Details
Details
Assignee
Michael Offner
Michael OffnerReporter
Michael Offner
Michael OffnerLabels
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
Fix versions
Priority
Created 8 April 2020 at 15:13
Updated 17 November 2023 at 16:13
Resolved 14 April 2020 at 14:41
we add this function, because <cfquery lazy="true"> does not work with MySQL because of the limitation of the MySQL JDBC implementation.
cfquery produces a query object that can be used more than once and MySQL only supports streaming with the "forward_only_cursor", what is incompatible with the query object.
the function queryLazy will need a function passed in as an argument, that then will be called by QueryLazy to pass the records. So the function will not create a query as result.