Indeed, that would make more sense. I've been using the same connection string for ages and didn't even think to look there. Mine was just:
derby.jdbc.url = jdbc:derby:testdb;create=true I'll revert the change. Sorry for the noise. -- Kevin On Sun, Jan 31, 2010 at 2:50 PM, Andrus Adamchik <[email protected]>wrote: > Hi Kevin, > > This doesn't look right. You probably missed "./target" in your derby > config, so the Derby DB ended up in the framework Folder. Here's my > connection.properties for Derby, resulting in DB created under "target", and > hence not showing as a change in Git: > > derby.cayenne.adapter = org.apache.cayenne.dba.derby.DerbyAdapter > derby.jdbc.url = jdbc:derby:./target/derby/testdb;create=true > derby.jdbc.driver = org.apache.derby.jdbc.EmbeddedDriver > > Andrus > > > > > On Jan 31, 2010, at 9:24 PM, [email protected] wrote: > > Author: kmenard >> Date: Sun Jan 31 19:24:31 2010 >> New Revision: 905103 >> >> URL: http://svn.apache.org/viewvc?rev=905103&view=rev >> Log: >> Ignore derby files. >> >> Modified: >> cayenne/main/trunk/.gitignore >> >> Modified: cayenne/main/trunk/.gitignore >> URL: >> http://svn.apache.org/viewvc/cayenne/main/trunk/.gitignore?rev=905103&r1=905102&r2=905103&view=diff >> >> ============================================================================== >> --- cayenne/main/trunk/.gitignore (original) >> +++ cayenne/main/trunk/.gitignore Sun Jan 31 19:24:31 2010 >> @@ -1 +1,3 @@ >> target >> +framework/cayenne-jdk1.5-unpublished/derby.log >> +framework/cayenne-jdk1.5-unpublished/testdb/ >> >> >> >> >
