tags:

views:

30

answers:

1

I have a sql like the following in JDBC Sampler of JMeter

select id,code from table where .....

how do I extract the value of the two columns.

+1  A: 

Are you asking how to extract a value from the response?

If so, use the post-processor "regular expression extractor", attached to the JDBC request.

BlackGaff