How to specify a variable expression list in a Pro*C query?

后端 未结 4 843
轮回少年
轮回少年 2021-01-29 05:21

I have a problem with a Pro*C query I\'m trying to optimise.

To explain, our application searches for rows in a huge database. These rows exist in several languages and

4条回答
  •  盖世英雄少女心
    2021-01-29 05:35

    You can't do this without Oracle Dynamic SQL. You will have to build your IN clause at runtime and EXECUTE IMMEDIATE. At least you can use Method 1, based on your queries.

提交回复
热议问题