You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
spring-cloud-bindings injects database connection url for oracle and sqlserver with the format: jdbc:type://host:port/db.
But Oracle and SqlServer use different formats of connection url:
Oracle: jdbc:oracle:thin:@host:port/db
SqlServer: jdbc:sqlserver://host:port;databaseName=db
As a result, spring-cloud-bindings doesn't work when binding to Oracle or SqlServer by providing host, port and db.
The text was updated successfully, but these errors were encountered:
spring-cloud-bindings
injects database connection url for oracle and sqlserver with the format: jdbc:type://host:port/db.But Oracle and SqlServer use different formats of connection url:
Oracle: jdbc:oracle:thin:@host:port/db
SqlServer: jdbc:sqlserver://host:port;databaseName=db
As a result,
spring-cloud-bindings
doesn't work when binding to Oracle or SqlServer by providinghost
,port
anddb
.The text was updated successfully, but these errors were encountered: