good morning
i am trying out the DB testing and downloaded the code sample from https://www.katalon.com/resources-center/tutorials/connect-db-gui-testing/#,
and got this error
**Remove unnecessary semicolons
**
private static Connection connection = null;
@Keyword
def connectDB(String dataFile){
//Load driver class for your specific database type
Class.forName(“org.sqlite.JDBC”)
String connectionString = “jdbc:sqlite:” + dataFile
if(connection != null && !connection.isClosed()){
connection.close()
}
hope you can assist me to move this forward
thanks