Hello,
I'm trying to access the H2 business_data database and extract some data for test purposes (before switching to another DB).
I've setup an H2 connector with folllowing configuration:
jdbc:h2:TCP://localhost:5432/business_data.db;FILE_LOCK=NO
username: sa
password:
I got this error when submitting my SQL request:
java.lang.reflect.InvocationTargetException
org.bonitasoft.engine.bpm.connector.ConnectorExecutionException: USERNAME=install | org.bonitasoft.engine.core.connector.exception.SConnectorException: java.util.concurrent.ExecutionException: org.bonitasoft.engine.commons.exceptions.SBonitaRuntimeException: org.bonitasoft.engine.connector.exception.SConnectorException: org.bonitasoft.engine.connector.ConnectorException: org.h2.jdbc.JdbcSQLException: Table "CLIENTS" non trouvée
Table "CLIENTS" not found; SQL statement:
SELECT * FROM CLIENTS; [42102-170]
Could you please tell me the right approach for extracting business data directly from the local H2 database using a script?
Thanks a lot for your help,
Kind regards.
Pierre-Alain