Is there some way to specify the schema to use on the JDBC URL, as an attribute or something?
You can specify "user=", see http://db.apache.org/derby/docs/10.9/ref/rrefattrib24612.html Specifying the user name implicitly specifies the schema. Or, you can issue a SET SCHEMA statement after you connect. But I don't believe you can explicitly set the schema using a JDBC connection URL attribute. thanks, bryan
