Quick Start with Apache Derby
Download and Install Derby Download the Apache Derby database. Note: At the time of this post, I am using version 10.10 To install, simply unpack the download to your favorite directory. We’ll refer to this directory as $DERBY_HOME Start Derby server $DERBY_HOME/bin/startNetworkServer Connect to Derby Run Derby’s interactive SQL tool: $DERBY_HOME/bin/ij ij>connect ‘jdbc:derby://localhost:1527/sample-db;create=true;user=APP;password=APP’; Note: This command will connect to the Derby server running on localhost on Derby’s default port, 1527. create=true will...