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
This project is governed by the [Code of Conduct](.github/CODE_OF_CONDUCT.adoc). By participating, you are expected to uphold this code of conduct.
28
-
29
24
## Getting Started
30
25
31
26
Here is a quick teaser of how to use R2DBC GaussDB in Java:
@@ -144,22 +139,6 @@ Artifacts can be found on [Maven Central](https://search.maven.org/search?q=gaus
144
139
</dependency>
145
140
```
146
141
147
-
If you'd rather like the latest snapshots of the upcoming major version, use our Maven snapshot repository and declare the appropriate dependency version.
To support simple connection fail-over it is possible to define multiple endpoints (host and port pairs) in the connection url separated by commas. The driver will try once to connect to each of them
@@ -187,31 +166,6 @@ require an explicit transaction (`BEGIN…COMMIT/ROLLBACK`). Newer pgpool versio
187
166
size or enable compatibility mode. Compatibility mode avoids cursors in auto-commit mode (`Execute` with no limit + `Sync`). Cursors in a transaction use `Execute` (with fetch size as limit) + `Sync`
188
167
as message flow.
189
168
190
-
## Listen/Notify
191
-
192
-
> This feature not implemented yet
193
-
194
-
Listen and Notify provide a simple form of signal or inter-process communication mechanism for processes accessing the same PostgreSQL database. For Listen/Notify, two actors are involved: The
195
-
sender (notify) and the receiver (listen). The following example uses two connections to illustrate how they work together:
Upon subscription, the first connection enters listen mode and publishes incoming `Notification`s as `Flux`. The second connection broadcasts a notification to the `mymessage` channel upon
213
-
subscription.
214
-
215
169
## Transaction Definitions
216
170
217
171
Postgres supports additional options when starting a transaction. In particular, the following options can be specified:
@@ -606,7 +560,6 @@ Running the JMH benchmarks builds and runs the benchmarks without running tests.
606
560
$ ./mvnw clean install -Pjmh
607
561
```
608
562
609
-
## License
610
-
This project is released under version 2.0 of the [Apache License][l].
563
+
## Code of Conduct
611
564
612
-
[l]: https://www.apache.org/licenses/LICENSE-2.0
565
+
This project is governed by the [Code of Conduct](.github/CODE_OF_CONDUCT.adoc). By participating, you are expected to uphold this code of conduct.
0 commit comments