-
Type: Improvement
-
Status: Resolved
-
Priority: Minor
-
Resolution: Fixed
-
Affects Version/s: 5.4.1, 5.4.2
-
Fix Version/s: 5.6.0-HF08, 5.7.1
-
Component/s: Core VCS
I have a NXQL query which contains a WHERE someid in ?, and then I use the QueryModel.getDocuments to execute the query.
The datatype of someid in the database is not String/VARCHAR, but an INTEGER/LONG.
I am not able to execute this query, since the NXQL is not expanded into proper JDBC.
Long[] ids; Object[] params = new Object[] { section, ids}; DocumentModelList res = qm.getDocuments(session, params);