Getting started with the JDBC TestStep
SoapUI 3.5 introduces a new TestStep for retrieving data from a database using JDBC. The result is formatted as XML and can be asserted or processed in the standard way (XPath, XQuery, etc described HERE ), but also two additional assertions are available:
- JDBC Status assertion
- JDBC Timeout assertion will check that the SQL was executed within the configured timeout.
TestStep Properties Configuration
For using the JDBC TestStep you will need to add a JDBC driver to soapui_home/bin/ext folder and restart the application.
The Open source version of JDBC TestStep has fields for setting the connection properties and the SQL query manually and an option for indicating if query is a stored procedure call. The query result can be viewed only as plain XML.

In SQL query you can use parameters which will be added through PreparedStatement by their exact name, for instance
"select x,y where z = :param1" should match parameter with a name param1 in the table of parameters. Note that parameter in SQL query has to have a ":" added in front of it.
The Pro version has a very useful additional feature of using a connection configured at the project level and a graphical wizard for building the SQL query.



