Closed
Details
Assignee
Pothys - MitrahSoftPothys - MitrahSoftReporter
Sasha ZavadskiySasha ZavadskiyPriority
CriticalLabels
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
Affects versions
Details
Details
Assignee
Pothys - MitrahSoft
Pothys - MitrahSoftReporter
Sasha Zavadskiy
Sasha ZavadskiyPriority
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
Affects versions
Created 6 December 2024 at 11:04
Updated 27 December 2024 at 06:31
Resolved 27 December 2024 at 06:31
Try to make any db request using new Query and addParam() function
var query = new Query(returnType="array"); query.setSQL("select * from testTable WHERE column = :columnValue"); query.addParam(name="columnValue", value=20, type="integer"); var res1 = query.execute().getResult(); writeDump(res1);
Looks like value not resolved: