how to call a sql script or query in background for a Karate feature?
问题 I have Karate feature with a long list of operations. I need to manually have some test data setup before running these tests which is essentially one sql query. Is there a way we can have this query run in "background" in Karate? I'm trying to update all the values in status which aren't "ready_to_test" to "ready_to_test". Say my query is update my_table set status = 'ready_to_test' where status != 'ready_to_test'; EDIT: I am trying to run the update query as follows use JDBC to setup test