Skip to content

Commit 604213c

Browse files
committed
Merge branch '3.4.x' into 3.5.x
2 parents 2e98356 + c3403d0 commit 604213c

4 files changed

Lines changed: 10 additions & 5 deletions

File tree

manual/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -277,6 +277,11 @@ for (ColumnDefinitions.Definition definition : row.getColumnDefinitions()) {
277277
}
278278
```
279279

280+
### Object mapping
281+
282+
Besides explicit work with queries and rows, you can also use
283+
[Object Mapper](object_mapper/) to simplify retrieval & store of your data.
284+
280285

281286
### More information
282287

manual/object_mapper/creating/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ declaration.
221221

222222
[@Computed][computed] can be used on properties that are the result of a
223223
computation on the Cassandra side, typically a function call. Native
224-
functions in Cassandra like `writetime()` or [User Defined Functions] are
224+
functions in Cassandra like `writetime()` or [User-Defined Functions] are
225225
supported.
226226

227227
```java
@@ -263,7 +263,7 @@ it should be placed on either the field declaration or the property getter metho
263263

264264
### Mapping User Types
265265

266-
[User Defined Types] can also be mapped by using [@UDT][udt]:
266+
[User-Defined Types] can also be mapped by using [@UDT][udt]:
267267

268268
```
269269
CREATE TYPE address (street text, zip_code int);

manual/object_mapper/using/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ implementation for it:
202202

203203
```java
204204
UserAccessor userAccessor = manager.createAccessor(UserAccessor.class);
205-
User user = userAccessor.getOne(uuid);
205+
Result<User> users = userAccessor.getAll();
206206
```
207207

208208
Like mappers, accessors are cached at the manager level and thus, are

manual/statements/prepared/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,10 +122,10 @@ BoundStatement bound = ps1.bind()
122122

123123
// Using the unset method to unset previously set value.
124124
// Positional setter:
125-
bound.unset("description");
125+
bound.unset(1);
126126

127127
// Named setter:
128-
bound.unset(1);
128+
bound.unset("description");
129129
```
130130

131131
A bound statement also has getters to retrieve the values. Note that

0 commit comments

Comments
 (0)