I am using jdbc request in jmeter. I want to use result of select query as a variable so i can perform some operation in beanshell postprocessor. My sql query is-
select * from table where id = 11111 and number = ${num} order by id desc limit 1;
I used ResultSet as a Result variable name. How can i use it in beanshell processor. And can i use this variable in other sampler?
Plz help. Thanks in advance.