Solved
Forum Discussion
JHunt
6 years agoCommunity Hero
Drat, this will be because all the TestStep properties are being added as properties to the PreparedStatement, so you can't leave out any of the properties from the query.
It looks like this is just a limitation of the JdbcRequestTestStep (which is quite limited) and trying to work around would just get even more complex.
At this point, if you want to send nulls. it is probably easier to write your own Groovy script that runs your INSERT statement instead of using JdbcRequestTestStep. You should be able to find posts on this forum or on Google for how to call the database in Groovy.
Prabaharan
6 years agoContributor
JHunt , Thanks for your detailed reply. Appreciate your help.
As suggested I have written groovy script for this.