????????????????????????URL????????????????????????????????????????????????????????????????????? Derby??????????????????????????????????????????????????????????????????????????????????????????????????????????????????DriverManager.getConnection???Properties?????????????????????????????????????????????????????????????????????????????????(?????????????????????????????????????????????????????????????????????????????????DriverManager.getConnection?????????????????????????????????????????????????????????)
?????????????????????Derby????????????????????????????????????URL????????????????????????????????????????????????????????????
import java.util.Properties;
Connection conn = DriverManager.getConnection(
    "jdbc:derby:sampleDB;create=true");
/* ?????????Properties??????????????????????????????*/
Properties myProps = new Properties();
myProps.put("create", "true");
Connection conn = DriverManager.getConnection(
    "jdbc:derby:sampleDB", myProps);
/* ????????????????????????????????????????????????*/
Connection conn = DriverManager.getConnection(
    "jdbc:derby:sampleDB", "dba", "password");