DZone
Database Zone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
  • Refcardz
  • Trend Reports
  • Webinars
  • Zones
  • |
    • Agile
    • AI
    • Big Data
    • Cloud
    • Database
    • DevOps
    • Integration
    • IoT
    • Java
    • Microservices
    • Open Source
    • Performance
    • Security
    • Web Dev
DZone > Database Zone > How to Perform Database Testing Using Katalon Studio

How to Perform Database Testing Using Katalon Studio

Get sample code demonstrating how to establish a database connection, execute a query, and close the connection in order to create custom keywords for database testing.

Oliver Howard user avatar by
Oliver Howard
·
Oct. 25, 17 · Database Zone · Tutorial
Like (7)
Save
Tweet
15.51K Views

Join the DZone community and get the full member experience.

Join For Free

Katalon Studio allows users to create custom keywords to address specific needs. With custom keywords, you can connect to databases and perform database testing. This tutorial describes details on how to create custom keywords for database testing in Katalon Studio.

Below is a code sample demonstrating how to:

  • Establish a database connection
  • Execute a query
  • Close the connection
package com.database
import java.sql.DriverManager
import java.sql.ResultSet
import java.sql.Statement
import com.kms.katalon.core.annotation.Keyword
import com.mysql.jdbc.Connection
public class DemoMySql {
 private static Connection connection = null;
 /**
 * Open and return a connection to database
 * @param dataFile absolute file path
 * @return an instance of java.sql.Connection
 */
 //Establishing a connection to the DataBase
 @Keyword
 def connectDB(String url, String dbname, String port, String username, String password) {
  //Load driver class for your specific database type
  String conn = "jdbc:mysql://" + url + ":" + port + "/" + dbname
  //Class.forName("org.sqlite.JDBC")
  //String connectionString = "jdbc:sqlite:" + dataFile
  if (connection != null && !connection.isClosed()) {
   connection.close()
  }
  connection = DriverManager.getConnection(conn, username, password)
  return connection
 }
 /**
 * execute a SQL query on database
 * @param queryString SQL query string
 * @return a reference to returned data collection, an instance of java.sql.ResultSet
 */
 //Executing the constructed Query and Saving results in resultset
 @Keyword
 def executeQuery(String queryString) {
  Statement stm = connection.createStatement()
  ResultSet rs = stm.executeQuery(queryString)
  return rs
 }
 //Closing the connection
 @Keyword
 def closeDatabaseConnection() {
  if (connection != null && !connection.isClosed()) {
   connection.close()
  }
  connection = null
 }
 /**
 * Execute non-query (usually INSERT/UPDATE/DELETE/COUNT/SUM...) on database
 * @param queryString a SQL statement
 * @return single value result of SQL statement
 */
 @Keyword
 def execute(String queryString) {
  Statement stm = connection.createStatement()
  boolean result = stm.execute(queryString)
  return result
 }
}

Tip: Press Ctrl + Shift + o to automatically import missing libraries in test scripts.

The custom keywords file will look like the following:

Katalon Custom Keywords

You can add the sample code above your keyword file and modify the details as appropriate. Refer to these links for the formats of database connection strings:

  • MSSQL
  • Oracle

Use Defined Keywords in Test Cases for DB Testing

1. Create new custom keywords for database connection (see above).

2. Copy the DB script provided above and paste it into the new keyword editor as illustrated below:Katalon Defined Keywords

For more tutorials about automation testing tools, please visit Katalon Studio's Tutorials.

Database connection Katalon Studio

Opinions expressed by DZone contributors are their own.

Popular on DZone

  • Modern REST API Design Principles and Rules
  • Debugging Deadlocks and Race Conditions
  • Application Scalability — How To Do Efficient Scaling
  • Querying Kafka Topics Using Presto

Comments

Database Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • MVB Program
  • Become a Contributor
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 600 Park Offices Drive
  • Suite 300
  • Durham, NC 27709
  • support@dzone.com
  • +1 (919) 678-0300

Let's be friends:

DZone.com is powered by 

AnswerHub logo