On 26/10/2015 21:03, Dave Alvarado wrote:
*I’m using Gradle 2.7 and Derby 10.12.1.1.  I would like to use Derby to
construct an in-memory database for which I can run unit tests.  I’m not
sure the right way to set this up but here is what I’m trying.  I
thought including “;create=true” in the URL would automatically launch
the server but I guess not because I’m getting a “*Error connecting to
server localhost on port 1,527 with message Connection refused*”
error when my LIquibase plugin attempts to write to the db.  Below is
what I’m including in my build.gradle script*

You'll need to start the server as a separate process before you start running your code. Or use an embedded server, which is much simpler, particularly if you only want a transient in-memory DB.
--
John English

Reply via email to