Package | Description |
---|---|
com.datastax.oss.driver.api.querybuilder.insert |
Modifier and Type | Method and Description |
---|---|
JsonInsert |
JsonInsert.defaultNull()
Adds a DEFAULT NULL clause to this statement.
|
JsonInsert |
JsonInsert.defaultUnset()
Adds a DEFAULT UNSET clause to this statement.
|
JsonInsert |
InsertInto.json(BindMarker bindMarker)
Makes this statement an INSERT JSON with a bind marker, as in
INSERT JSON ? . |
default JsonInsert |
InsertInto.json(Object value,
CodecRegistry codecRegistry)
Makes this statement an INSERT JSON with a custom type mapping.
|
JsonInsert |
InsertInto.json(String json)
Makes this statement an INSERT JSON with the provided JSON string.
|
<T> JsonInsert |
InsertInto.json(T value,
TypeCodec<T> codec)
Makes this statement an INSERT JSON with a custom type mapping.
|
Copyright © 2017–2022. All rights reserved.