O osvald Member² Mar 12, 2019 #1 Please explain or give an example how to work with variable type "Substitution" in Test Window ? (Is this new type?) Last edited: Mar 12, 2019
Please explain or give an example how to work with variable type "Substitution" in Test Window ? (Is this new type?)
Marco Kalter Administrator Staff member Mar 12, 2019 #1 This is not a new type. You can use the substitution variable type in cases where bind variables are not allowed. For example to specify a table name: Code: begin select count(*) into :v_count from :v_table; end; In this case "v_table" needs to be declared as a substitution variable.
This is not a new type. You can use the substitution variable type in cases where bind variables are not allowed. For example to specify a table name: Code: begin select count(*) into :v_count from :v_table; end; In this case "v_table" needs to be declared as a substitution variable.