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
<4> Use `then()` to just update rows an object without consuming further details. Modifying statements allow also consumption of the number of affected rows.
193
193
====
194
194
195
-
[r2dbc.datbaseclient.fluent-api.delete.methods]]
196
-
==== Methods for DELETE operations
195
+
[r2dbc.datbaseclient.fluent-api.update.methods]]
196
+
==== Methods for UPDATE operations
197
197
198
-
The `delete()` entry point exposes some additional methods that provide options for the operation:
198
+
The `update()` entry point exposes some additional methods that provide options for the operation:
199
199
200
200
* *table* `(Class<T>)` used to specify the target table using a mapped object. Returns results by default as `T`.
201
201
* *table* `(String)` used to specify the target table name. Returns results by default as `Map<String, Object>`.
Running a `SELECT` query returns a different type of result, in particular tabular results. Tabular data is typically consumes by streaming each `Row`.
35
+
Running a `SELECT` query returns a different type of result, in particular tabular results. Tabular data is typically consumed by streaming each `Row`.
36
36
You might have noticed the use of `fetch()` in the previous example.
37
37
`fetch()` is a continuation operator that allows you to specify how much data you want to consume.
0 commit comments