10.15 (Important: see ‘Compatibility’ below)10.1410.1310.1210.11| URL format | jdbc:derby:subsubprotocol:databaseName |
|---|---|
| Maven Central coordinates | org.apache.derby:derbyclient:10.14.1.0 |
| Supported versions | 10.11 and later |
| Default Java class | org.apache.derby.jdbc.EmbeddedDriver |
/* Single line comment */
CREATE TABLE test_data (
value VARCHAR(25) NOT NULL PRIMARY KEY
);
/*
Multi-line
comment
*/
-- Sql-style comment
-- Placeholder
INSERT INTO ${tableName} (value) VALUES ('Mr. T');