Groovy has a database-enabled class library:
Search for SQL Groovy in Bing, find sql (groovy 2.4.3)and click to open this URL:
Http://docs.groovy-lang.org/latest/html/api/groovy/sql/Sql.html
With Groovy's class SQL, you can connect to the database and make the data more and more censored, referred to as crud
CRUD means:create, Retrieve, Update, Delete
Groovy can support a variety of different databases: MySQL, SQL Server, Oracle
However, different databases need to download different jar packages to support, and then put the jar into the soapui lib directory after downloading, for example
Mysql:mysql-connector-java-5.1.22.jar
Oracle:oracle-connector-java.jar
In the process of learning, if you need to connect to the database, you can install a MySQL, you can also install XAMPP, with MySQL
What is XAMPP? XAMPP is the most popular PHP development environment
XAMPP is a completely free and easy-to-install Apache release that includes Apache, MySQL, PHP, and Perl. The setup of the XAMPP open source package makes installation and use surprisingly easy.
Can be downloaded from here: https://www.apachefriends.org/zh_cn/index.html
[Groovy] Soapui How to support the operation of the database