PDA

View Full Version : Access to a junit's embedded database within db explorer



t2987
Jan 22nd, 2012, 02:35 PM
Is it possible to connect to an embeded database constructed by a junit test in debug mode via STS database explorer, and subsequently run queries against it.

I have tried but when I connect to the datebase (H2 & HSQL) the connections always have no table contents. A specific example being: The mobile application greenhouse uses embeded databases in its JdbcEventRepositoryTest.java junit tests. The database being established via EmbeddedDatabaseFactory.java. If I stop on breakpoint & use the configuration data for the database within a STS database explorer's connection the resulting schema is empty suggesting either what I am trying to do is not possible or that I have not properly identified the connection parameters.

Martin Lippert
Jan 23rd, 2012, 03:54 AM
Hi!

I moved this question over to the Greenhouse forum, I guess here are more people familiar with the database details of the example.

HTH,
Martin

t2987
Jan 25th, 2012, 04:08 PM
The question is more related to the embeded database api. Greenhouse is just an example that uses the spring embeded database api.