I want to write equivalent stored procedure (contain execute string) in natively compiled stored procedure, but I can't find a way to implement that.
Does anyone have an idea?
I want to write equivalent stored procedure (contain execute string) in natively compiled stored procedure, but I can't find a way to implement that.
Does anyone have an idea?
Copyright © 2021 Jogjafile Inc.
There are limited set of operators that can be used in natively compiled stored procedures.
You are allowed to use control-of-flow language statements like
IF and ELSE
, so this is the closest thing you can get to dynamic execution.