Fixed
Details
Details
Assignee
Pothys - MitrahSoft
Pothys - MitrahSoftReporter
Tyler Clendenin
Tyler ClendeninLabels
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
Sprint
None
Affects versions
Priority
Created 22 April 2020 at 05:55
Updated 8 May 2023 at 06:37
Resolved 8 May 2023 at 06:37
When attempting to use a Java library com.opencsv.CSVWriter 3.7's
writeAll(ResultSet rs, boolean includeColumnNames)
method I get the errorThe library attempts to use the
getMetaData()
method but it was never implemented. This seems to be a part of thejava.sql.ResultSet
interface.My guess is in the
fillResult()
method theQueryResult
has aResultSetMetaData
returned byresult.getMetaData()
. It might be as easy as storing that into a class variable and returning it from thegetMetaData()
method.