The following examples specify the user and password URL attributes. To enable user authentication, the property derby.connection.requireAuthentication must be set to true, otherwise, Derby does not require a user name and password. For details on how to enable user authentication, please see "Working with user authentication" in the Java DB Developer's Guide.
derby.connection.requireAuthentication=true derby.authentication.provider=BUILTIN derby.user.judy=no12see
The following example connects to the default server name localhost on the default port, 1527, and to the database sample.
jdbc:derby://localhost:1527/sample;user=judy;password=no12see
jdbc:derby://localhost:1527/sample;create=true;user=judy; password=no12see
This example connects to the default server name localhost on the default port, 1527, and includes the path in the database name portion of the URL.
jdbc:derby://localhost:1527/c:/my-db-dir/my-db-name;user=judy; password=no12see
The following example shows how to use the network client driver to connect the network client to the Network Server:
String databaseURL = "jdbc:derby://localhost:1527/sample"; // // Load Derby Network Client driver class. // If you are running on JDK 6 or higher, you do not // need to invoke Class.forName(). In that environment, the // network client driver loads automatically. // Class.forName("org.apache.derby.jdbc.ClientDriver"); // Set user and password properties Properties properties = new Properties(); properties.setProperty("user", "judy"); properties.setProperty("password", "no12see"); // Get a connection Connection conn = DriverManager.getConnection(databaseURL, properties);