Home > database >  what is the MS SQL "platform" name in spring boot?
what is the MS SQL "platform" name in spring boot?

Time:02-18

for h2 db we define data-${platform}.sql in the properties as spring.datasource.platform=h2.

what is that name for MS SQL instead of h2?

CodePudding user response:

It is "sql_server". Refer below link.

https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/orm/jpa/vendor/Database.html#SQL_SERVER
  • Related