Hi,
My test plan is as follows
Test Plan
thread
Jdbc Connection Config
jdbc request
view results tree
CSV Data Set Config
My query is an update prepared statement calling a stored procedure which works
fine with hard coded value,but when I pass the csv file it does not pass values
from the file to the parameter. I'm using the jtds sql driver.
My file is in c:\words.csv
contents of the file
document
system
test
my jdbc request has
SET @SEARCH_TERM ="${words}"
call the stored procedure with
execute storedprocedure1 @SEARCH_TERM
parameter values: ${words}
parameter type: VARCHAR
I see that the request is being sent as ${words} not what is in the files
c:\words.csv. NO errors in the jmeter.log. What could I be doing wrong????
Thanks