Insert the data to the database using JDBC in camunda

I’m doing the task to insert the data to the database(SQL) using JDBC in camunda.
In the modeler, I have created the service task to create insert the data to the SQL.
and another task is to get the details by the user and assign them to the particular user.
Both tasks are independent of each other.
Could you please tell me why the data is not inserted into the database?
Service task to insert data to the database–(problem is with code, data is not getting inserted and proceeding to the next task)


2nd task was performed well

Your implementation allows that. Look for any errors in InsertDB delegate execution. If any error happens during database insertion you catch error and continue.

Remove try-catch block and see what happens.

1 Like

You’re likely to see more details of the error in the Camunda Log.

1 Like

solved:The following dependency is added

<dependency>
  <groupId>com.oracle.database.jdbc</groupId>
  <artifactId>ojdbc6</artifactId>
  <version>11.2.0.4</version>
</dependency>
1 Like