pivotal-cf / java-cfenv

Apache License 2.0
91 stars 56 forks source link

Restores support for user:pass@host/db style SQLServer URI #190

Closed pivotal-david-osullivan closed 1 year ago

pivotal-david-osullivan commented 1 year ago

The SQLServer URI format of sqlserver://username:passwordg@host:1433/database was originally supported and then removed. This change brought support for the format sqlserver://host:1433;database=foo.

This PR restores support for the original format which is a valid URL. It still supports the alternative format with semi-colons but because that is not a valid URL, we recommend using the original format when possible.