merge

@JvmName(name = "mergeJson")
suspend fun merge(data: JsonObject): JsonObject

Merge

Merges a single record in a table with the given Json content.

Return

The merged record

Parameters

data

The Json content to merge the record with


inline suspend fun <T> merge(data: JsonObject): T

Merge

Merges a single record in a table with the given content.

Return

The merged record

Parameters

T

The type of the content

data

The content to merge the record with


@JvmName(name = "mergeBindJson")
suspend fun merge(vararg data: Bind): JsonObject

Merge

Merges a single record in a table with the given parameters.

Return

The merged record

Parameters

data

The parameters to merge the record with


@JvmName(name = "mergeBind")
inline suspend fun <T> merge(vararg data: Bind): T

Merge

Merges a single record in a table with the given parameters.

Return

The merged record

Parameters

T

The type of the returned record

data

The parameters to merge the record with