Skip to content

Commit f0d13fa

Browse files
authored
Support for SAP Hana Database
1 parent ce60f82 commit f0d13fa

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

spring-boot-project/spring-boot/src/main/java/org/springframework/boot/jdbc/DatabaseDriver.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,11 @@ public enum DatabaseDriver {
5151
* H2.
5252
*/
5353
H2("H2", "org.h2.Driver", "org.h2.jdbcx.JdbcDataSource", "SELECT 1"),
54+
55+
/**
56+
* HDB - SAP Hana Database.
57+
*/
58+
HDB("HDB", "com.sap.db.jdbc.Driver", "com.sap.db.jdbcext.XADataSourceSAP", "SELECT 1 FROM DUMMY"),
5459

5560
/**
5661
* HyperSQL DataBase.

0 commit comments

Comments
 (0)