在我的页面上,我显示数据库表中的一些文本,这些文本包含需要用某些页面项替换的占位符。
示例:
数据库中的文本
"My text to be displayed {0}th on the {1}th page"
应成为:
"My text to be displayed " ||:P3_COUNT||"th on the "||:P3_PAGE_NO||"th page"
在Oracle APEX中可能吗?我该怎么办?
答案 0 :(得分:2)
在源中:
类型: SQL查询(返回单个值)
SQL查询:选择replace(replace(your_column,'{0}',:P3_COUNT),'{1}', :P3_PAGE_NO)作为your_table中的your_column