So I am trying to update my database using the data extracted from the HTTP request samplers. So I have the following sql query which works fine for one record:
UPDATE optim_user
SET equip_uptime = CONCAT('${timestamp_rg1}', ',', '${timestamp_ext1}'), equip_fw = CONCAT('${firmware_rg1}',',', '${firmware_ext1}')
WHERE optim_uid = '${serialnumber_soak1}';
I want to update 50 or so records with the data extracted from my hTTP requests.
I have tried following the steps mentioned here but It did not work. Below are the screen shots of the CSV data config and the JDBC sampler
Is there a way to include multiple sql statements? Thanks.