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
@@ -29,7 +29,7 @@ The MariaDB Connector is available through maven using :
29
29
<dependency>
30
30
<groupId>org.mariadb</groupId>
31
31
<artifactId>r2dbc-mariadb</artifactId>
32
-
<version>0.8.2-alpha2</version>
32
+
<version>0.8.3-beta1</version>
33
33
</dependency>
34
34
```
35
35
@@ -95,9 +95,10 @@ Basic example:
95
95
|**`rsaPublicKey`**| <i>only for MySQL server</i><br/> Server RSA public key, for SHA256 authentication |*String*||
96
96
|**`cachingRsaPublicKey`**| <i>only for MySQL server</i><br/> Server caching RSA public key, for cachingSHA256 authentication |*String*||
97
97
|**`allowPublicKeyRetrieval`**| <i>only for MySQL server</i><br/> Permit retrieved Server RSA public key from server. This can create a security issue |*boolean*| true |
98
-
|**`allowPipelining`**| Permit to send queries to server without waiting for previous query to finish |*boolean*||
99
-
|**`useServerPrepStmts`**| Permit to indicate to use text or binary protocol for query with parameter |*boolean*|false |
100
-
|**`prepareCacheSize`**| if useServerPrepStmts = true, cache the prepared informations in a LRU cache to avoid re-preparation of command. Next use of that command, only prepared identifier and parameters (if any) will be sent to server. This mainly permit for server to avoid reparsing query. |*int*|256 |
98
+
|**`allowPipelining`**| Permit to send queries to server without waiting for previous query to finish |*boolean*| true |
99
+
|**`useServerPrepStmts`**| Permit to indicate to use text or binary protocol for query with parameter |*boolean*| false |
100
+
|**`prepareCacheSize`**| if useServerPrepStmts = true, cache the prepared informations in a LRU cache to avoid re-preparation of command. Next use of that command, only prepared identifier and parameters (if any) will be sent to server. This mainly permit for server to avoid reparsing query. |*int*|256 |
101
+
|**`pamOtherPwd`**| Permit to provide additional password for PAM authentication with multiple authentication step. If multiple passwords, value must be URL encoded.|*string*||
101
102
102
103
## Roadmap
103
104
@@ -112,11 +113,11 @@ Basic example:
112
113
To file an issue or follow the development, see [JIRA](https://jira.mariadb.org/projects/R2DBC/issues/).
0 commit comments