I want to connect to a external server via Service Task and JDBC Connection
example con in Service Task:
con= DriverManager.getConnection(“jdbc:mysql://127.0.0.1/test”,“root”,"");
where do I have to add the JDBC Driver so I can build an external connection?
I tried adding it to the maven project path like for a normal java applet
I tried adding it to the tomcat/lib and to the tomcat/server/lib
but the log still throws “no suitable driver found for…”
To clear this out, I don’t want to run camunda in mysql, I want to connect to a external mysql database and store the execution variables as persistent data.
thanks for your help & best regards