setStrictJava(true);Stringdiscount=SampleResult.getResponseDataAsString().substring(37,39);log.info(discount); Let's analyze in more detail what the code above does: String discount - Declaring a variable of data type String SampleResult - The name of the class in which the method is implemen...
JDBC-related exception mostly throws SQLException, and it is a checked exception so we must either catch it or throw it. All the business logic and commit data should be done in a Try block, if any exception happens in the block we should catch and handle it in the Catch block. Based ...
The BSF Assertion and JSR223 Assertion use cases are the same as the Beanshell assertion. The only difference is performance. JSR223, in combination with Groovy language, gives almost the same performance as native Java code and Beanshell, whereas other languages have performance constraints. If yo...
My answer would be, that's no fun - why would you manually do this when you can have HANA perform this itself? Let's create a stored procedure that does this work for us! :smile: We need to create a stored procedure that inserts a whitespace row into every table in a target ...