merge

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

Merge

Merges all records in a table with the given Json content.

Return

The merged records

Parameters

data

The Json content to merge the records with


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

Merge

Merges all records in a table with the given content.

Return

The merged records

Parameters

T

The type of the content

data

The content to merge the records with


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

Merge

Merges all records in a table with the given parameters.

Return

The merged records

Parameters

data

The parameters to merge the records with


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

Merge

Merges all records in a table with the given parameters.

Return

The merged records

Parameters

T

The type of the returned records

data

The parameters to merge the records with