cancel
Showing results for 
Search instead for 
Did you mean: 

How to inspect the in-memory Activiti H2 database?

kcassell
Champ in-the-making
Champ in-the-making
I'm just getting started using Activiti, and I'd like to be able to examine the contents of the in-memory H2 database as I run my workflows. How can I do so? Is it possible using a tool like Squirrel? If so, what do I use as a URL, user, password, etc.? Right now, I am using the default configuration.
11 REPLIES 11

I used mysql database and i created the activiti database with phpmyadmin and then i made run to my java application and all the needed tables were created and the engine is persisting the data about the processes.

This is my configuration bean 

<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" >
<property name="driverClassName" value="com.mysql.jdbc.Driver" />
<property name="url" value="jdbc:mysql://localhost:3306/activiti" />
<property name="username" value="root" />
<property name="password" value="" />
<property name="defaultAutoCommit" value="false" />
</bean>

cjose
Elite Collaborator
Elite Collaborator

yes, you are on the right track!