Details
-
Bug
-
Status: Closed
-
Trivial
-
Resolution: Fixed
-
10.0.2.0, 10.0.2.1, 10.1.1.0, 10.1.2.1, 10.1.3.1, 10.2.1.6
-
None
Description
In the Developers Guide the chapter "Shutting Down the System" gives the following command to shut down the Derby system:
DriverManager.getConnection("jdbc:derby:cs;shutdown=true");
This command should not include the name of a database ("cs"). The correct command should be:
DriverManager.getConnection("jdbc:derby:;shutdown=true");