diff --git a/framework-docs/modules/ROOT/pages/data-access/jdbc/embedded-database-support.adoc b/framework-docs/modules/ROOT/pages/data-access/jdbc/embedded-database-support.adoc index f848360c9a7..4633b26c54f 100644 --- a/framework-docs/modules/ROOT/pages/data-access/jdbc/embedded-database-support.adoc +++ b/framework-docs/modules/ROOT/pages/data-access/jdbc/embedded-database-support.adoc @@ -3,9 +3,8 @@ The `org.springframework.jdbc.datasource.embedded` package provides support for embedded Java database engines. Support for https://www.hsqldb.org[HSQL], -https://www.h2database.com[H2], and https://db.apache.org/derby[Derby] is provided -natively. You can also use an extensible API to plug in new embedded database types and -`DataSource` implementations. +and https://www.h2database.com[H2] is provided natively. +You can also use an extensible API to plug in new embedded database types and `DataSource` implementations. [[jdbc-why-embedded-database]] @@ -41,7 +40,6 @@ supports. It includes the following topics: * <> * <> -* <> [[jdbc-embedded-database-using-HSQL]] === Using HSQL @@ -58,13 +56,6 @@ Spring supports the H2 database. To enable H2, set the `type` attribute of the `embedded-database` tag to `H2`. If you use the builder API, call the `setType(EmbeddedDatabaseType)` method with `EmbeddedDatabaseType.H2`. -[[jdbc-embedded-database-using-Derby]] -=== Using Derby - -Spring supports Apache Derby 10.5 and above. To enable Derby, set the `type` -attribute of the `embedded-database` tag to `DERBY`. If you use the builder API, -call the `setType(EmbeddedDatabaseType)` method with `EmbeddedDatabaseType.DERBY`. - [[jdbc-embedded-database-types-custom]] == Customizing the Embedded Database Type diff --git a/framework-docs/modules/ROOT/pages/data-access/jdbc/packages.adoc b/framework-docs/modules/ROOT/pages/data-access/jdbc/packages.adoc index d55ca6c955a..e5391e3d146 100644 --- a/framework-docs/modules/ROOT/pages/data-access/jdbc/packages.adoc +++ b/framework-docs/modules/ROOT/pages/data-access/jdbc/packages.adoc @@ -17,7 +17,7 @@ xref:data-access/jdbc/simple.adoc[Simplifying JDBC Operations with the `SimpleJd for easy `DataSource` access and various simple `DataSource` implementations that you can use for testing and running unmodified JDBC code outside of a Jakarta EE container. A subpackage named `org.springframework.jdbc.datasource.embedded` provides support for creating -embedded databases by using Java database engines, such as HSQL, H2, and Derby. See +embedded databases by using Java database engines, such as HSQL and H2. See xref:data-access/jdbc/connections.adoc[Controlling Database Connections] and xref:data-access/jdbc/embedded-database-support.adoc[Embedded Database Support]. diff --git a/framework-docs/modules/ROOT/pages/data-access/jdbc/simple.adoc b/framework-docs/modules/ROOT/pages/data-access/jdbc/simple.adoc index 304fbc36d95..6e61bf5ff6d 100644 --- a/framework-docs/modules/ROOT/pages/data-access/jdbc/simple.adoc +++ b/framework-docs/modules/ROOT/pages/data-access/jdbc/simple.adoc @@ -483,7 +483,7 @@ as input. See the <> for details on how to define an ` NOTE: Explicit declarations are necessary if the database you use is not a Spring-supported database. Currently, Spring supports metadata lookup of stored procedure calls for the -following databases: Apache Derby, DB2, MySQL, Microsoft SQL Server, Oracle, and Sybase. +following databases: DB2, MySQL, Microsoft SQL Server, Oracle, and Sybase. We also support metadata lookup of stored functions for MySQL, Microsoft SQL Server, and Oracle.