Matthew,
why not passing a table type structure (list of properties) into your stored procedure that what you may perform all operations at once.
so your stored procedure would have an input param like
procedure <YOUR_PROC_NAME> ( IN propertyList TABLE( property varchar(100) ) )
begin
-- body
end
hope this helps!