driver

Bonita 7.6.x Docker image - MS SQL Server Driver

Hello everybody, I'm trying to run the 7.6 image version from Bonita on Docker, but I'm getting the following error:

bonita_1 | [ERROR] The driver class named 'com.microsoft.sqlserver.jdbc.SQLServerDriver' specified in 'internal.properties' configuration file, to connect to your 'sqlserver' database, cannot be found. Either there is an error in the name of the class or the class is not available in the classpath. Make sure the driver class name is correct and that the suitable driver is available in the lib/ folder and then try again.

Execute a stored procedure

Good Morning,

i need to execute a stored procedure that returns a row. The stored procedure requires one string parameter, and returns a row. Then, i want to save the values of the row (5 columns) in independent variables. What is the best way to do this?

I'm doing it in a groovy script but it is giving me the following error:

No suitable driver found for jdbc:sqlserver://hostSql;database=DBName.

I'm using this code in the groovy script:

`import groovy.sql.Sql;

Notifications