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
As per §4.3 R2DBC SPI Compliance, the ServiceLoader-based ConnectionFactoryProvider is missing. This lookup enables creating a ConnectionFactory from an R2DBC URL such as ConnectionFactories.get("r2dbc:postgres://[<username>:<password>@]<host>:<port>/<database>"), see ConnectionFactoryOptions for reference.
The text was updated successfully, but these errors were encountered:
Please, if implemented can you provide support for uri where the current schema can be defined? For example, we have some Spring applications here where the connections as defined in such way:
It works perfectly. In the builder I could not find a schema configuration, and was not clear to me where I could configure it. This approach is better then to set schema for every connection provided.
As per §4.3 R2DBC SPI Compliance, the ServiceLoader-based
ConnectionFactoryProvider
is missing. This lookup enables creating aConnectionFactory
from an R2DBC URL such asConnectionFactories.get("r2dbc:postgres://[<username>:<password>@]<host>:<port>/<database>")
, seeConnectionFactoryOptions
for reference.The text was updated successfully, but these errors were encountered: