_ivanovich_
6 years agoFrequent Contributor
How to simplify groovy code for several sql request in different table ?
Hi,
how can we simplify a groovy code for several sql request which are not same.
i'm querying different table for different data so i have at least 50 sql queries and for each query i set proper...
- 6 years ago
I would probably just put the results into the test run context.
context.type = sql.firstRow('select type from order where id = ?', ["abc123"]).type
context.name = sql.firstRow('select name from product where desc = ?', ["yzx"]).nameThat form uses prepared statements, which you should be doing and is not much more difficult.
To get the values in a request's body:
${type} ${name}
To get the values in another groovy script:
context.type context.name