Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I just want to know how I can start derby in network server mode and still be able to get an embedded connection?

Thank you.

share|improve this question

3 Answers

The Embedded Server mode sounds like what you are asking for. It allows you to start a network server when you start the embedded database.

share|improve this answer

It sounds contradictory that you want to start derby in network server mode and get the embedded driver. Even if this might be possible, it is definitely discouraged. You should decide on whether you want to use Apache Derby in the network mode using the DRDA or as an embedded driver and stick to that decision.

Here you'll find a tutorial on how to use the network driver: http://db.apache.org/derby/papers/DerbyTut/ns_intro.html

share|improve this answer

Some one correct me if i am wrong, Both will run on separte ports. So you can connect to the required one using the proper connectionName, right?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.