是否有像MessageBox / SQL绑定普通字符串的东西?

时间:2016-04-10 02:49:31

标签: peoplesoft

上下文

在PeopleCode中,以下MessageBox声明有效:

MessageBox(0, "", 0, 0, "Something = %1, Something else = %2.", &something, &somethingElse);

这允许我为MessageBox使用绑定变量。 SQL也是如此:

SQLExec("SELECT * FROM %Table(:1) WHERE VALUE = :2", Record.Y_SOMETHING, &value);

问题

有没有办法用普通字符串做到这一点?我从来没有喜欢过" pipe"像&string = Something = " | &something | ", Something else = " | &somethingElse | "."一样串起来。

有没有办法将这种格式用于常规字符串?我查看了各种Oracle的PeopleBooks,但我还没找到任何东西。

0 个答案:

没有答案