How to use Katalon to insert record into sql database

Viewed 32

Hi anyone can guide me on how can I insert record into database by using Katalon. I am able to login database in Katalon using custom keyword.

1 Answers

try to use groovy string :

insertquery = "INSERT INTO <<TableName>> VALUES ('${email}', '${number}', 'DEV_CH')"
Related