对于Bonita BPM而言,我是一个非常新的人,我在连接MySQL数据库时遇到了麻烦。
我收到以下错误:
java.lang.reflect.InvocationTargetException org.bonitasoft.engine.bpm.connector.ConnectorExecutionException:USERNAME = install | org.bonitasoft.engine.core.operation.exception.SOperationExecutionException:org.bonitasoft.engine.expression.exception.SExpressionEvaluationException:找不到强制表达式的值' singleResult'类型为输入表达式
我希望有人比我更有经验。我浏览过网络,但无法找到当前版本的任何教程(7.3)。
设置信息:
Driver: com.mysql.jdbc.Driver
URL: jdbc:mysql://localhost:3306/firstdatabase
username:root
password:*******
查询:
SELECT * FROM testing WHERE test_id = 'testingquery';
testing
是firstdatabase
中的一个表,其中包含一个条目和一个列。该列为test_id
,其中一个条目为testingquery
。