vertx-sql-client
vertx-sql-client copied to clipboard
MS SQL uri parser does not parse JDBC urls
With the Postgres and MySQL clients, you can take a connection URI that works with JDBC drivers and parse with the Reactive client parser.
I haven't checked for DB2 but this does not work with MSSQLConnectOptions.fromUri
.
See https://docs.microsoft.com/en-us/sql/connect/jdbc/building-the-connection-url
this is expected for the moment we don't parse JDBC urls
if we were to do it, then we would do it globally
@vietj indeed we don't commit to being able to parse any JDBC url.
But for Postgres and MySQL, most common urls are the same in JDBC and reactive clients. For MS SQL, we took the same format as Postgres and MySQL, but Microsoft uses values separated by semi-colons.
Looks like this may be related to #1118
@rdruss yes, it's a similar issue