使用SQL「IN」謂詞在JasperReports 中傳遞變數參數清單
使用JasperReports 和SQL「IN」謂詞時,它需要動態地將參數清單傳遞給查詢。本文示範如何在 Java 程式中設定包含整數值清單的參數的值。
下面的 SQL 查詢需要包含一個或多個整數值的參數清單「roles」:
SELECT customer_name AS NAME, id_customer AS ID FROM customer WHERE customer_role IN ($P{roles})
要在 Java中動態設定「roles」參數的值,請使用以下提供的「$X」變數JasperReports:
// Assume the "roles" parameter is a list of integers List<Integer> roles = ...; // Convert the list to a comma-separated string String roleString = roles.stream().map(String::valueOf).collect(Collectors.joining(",")); // Set the parameter value using the "$X" variable parameters.put("roles", "$X{IN,customer-role," + roleString + "}");
使用「$X{IN,column-name,parameter-name}」語法允許您指定要比較的欄位、參數名稱和值清單。
例如,以下查詢將使用「roles」參數來過濾名為"customer_role":
SELECT * FROM customer WHERE $X{IN,customer_role,roles}
此解決方案可讓您將動態參數清單傳遞給JasperReports 中的SQL「IN 」謂詞,確保查詢根據提供的值正確過濾資料。
以上是如何將變數參數清單傳遞給 JasperReports 的 SQL'IN”謂詞?的詳細內容。更多資訊請關注PHP中文網其他相關文章!