Hi Flowable!
I am trying to create ProcessEngine by builder using this code:
ProcessEngine processEngine = ProcessEngineConfiguration.createStandaloneProcessEngineConfiguration()
.setDatabaseType(ProcessEngineConfiguration.DATABASE_TYPE_MYSQL)
.setJdbcDriver(“com.mysql.jdbc.Driver”)
.setDatabaseSchema(“jdbc:mysql://127.0.0.1:3306/flowable?characterEncoding=UTF-8&useSSL=false”)
.setJdbcUsername(“flowable”)
.setJdbcPassword(“flowable”)
.setDatabaseSchemaUpdate(ProcessEngineConfiguration.DB_SCHEMA_UPDATE_TRUE)
.buildProcessEngine();
But have this error :
Error getting a new connection. Cause: java.sql.SQLException: No suitable driver found for jdbc:h2:tcp://localhost/~/flowable
Cause: java.sql.SQLException: No suitable driver found for jdbc:h2:tcp://localhost/~/flowable
Why this builder doesn’t see my configuration data?
What more have i specify for this bulder