diff --git a/src/main/kotlin/fr/postgresjson/connexion/EmbedExecutable.kt b/src/main/kotlin/fr/postgresjson/connexion/EmbedExecutable.kt index 0428988..bd61ff6 100644 --- a/src/main/kotlin/fr/postgresjson/connexion/EmbedExecutable.kt +++ b/src/main/kotlin/fr/postgresjson/connexion/EmbedExecutable.kt @@ -51,4 +51,6 @@ interface EmbedExecutable { fun exec(values: Map): QueryResult fun sendQuery(values: List = emptyList()): Int fun sendQuery(values: Map): Int + fun sendQuery(vararg values: Pair): Int = + sendQuery(values.toMap()) } \ No newline at end of file