Architect should share query params if they have the same name.
Why is it that when I run this batch query...
update table1 set column = :param;
update table2 set column = :param;
update table3 set column = :param;
update table4 set column = :param;
update table5 set column = :param;
Architect asks me to enter the param 5 times. If I wanted 5 distinct values I would have used 5 different param names.
Make Architect reuse the param values if the param already exists with the same name. This is annoying.
1
vote