Néstor Boscán wrote:
Hi
Is there a way to restrict external connection to a Derby Database?. I only want the JVM to be able to connect to the Derby database and no other external processes.

Hello,

Unless I have misunderstood, sounds like you simply want to use Derby embedded. This is done by using org.apache.derby.jdbc.EmbeddedDriver and specifying the connection URL as 'jdbc:derby:myDatabase[;create=true;...]'. By default, no network server will be started and only the JVM is able to access the database.

Note that 'myDatabase' can point to a database by using either a relative path (relative to derby.system.home, or current working directory if it is unset) or an absolute path.

Did that answer you question, or do you have any further requirements?


regards,
--
Kristian


Regards, Néstor Boscán

Reply via email to