io.vertx.kotlin.ext.jdbc.JDBCClient.kt Maven / Gradle / Ivy
/*
* Copyright 2019 Red Hat, Inc.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* and Apache License v2.0 which accompanies this distribution.
*
* The Eclipse Public License is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* The Apache License v2.0 is available at
* http://www.opensource.org/licenses/apache2.0.php
*
* You may elect to redistribute this code under either of these licenses.
*/
package io.vertx.kotlin.ext.jdbc
import io.vertx.core.json.JsonArray
import io.vertx.ext.jdbc.JDBCClient
import io.vertx.kotlin.coroutines.awaitResult
/**
* Suspending version of method [io.vertx.ext.jdbc.JDBCClient.querySingle]
*
* @param sql the statement to execute
* @return [JsonArray?]
*
* NOTE: This function has been automatically generated from [io.vertx.ext.jdbc.JDBCClient] using Vert.x codegen.
*/
@Deprecated(message = "Instead use querySingle returning a future and chain with await()", replaceWith = ReplaceWith("querySingle(sql).await()"))
suspend fun JDBCClient.querySingleAwait(sql: String): JsonArray? {
return awaitResult {
this.querySingle(sql, it)
}
}
/**
* Suspending version of method [io.vertx.ext.jdbc.JDBCClient.querySingleWithParams]
*
* @param sql the statement to execute
* @param arguments the arguments
* @return [JsonArray?]
*
* NOTE: This function has been automatically generated from [io.vertx.ext.jdbc.JDBCClient] using Vert.x codegen.
*/
@Deprecated(message = "Instead use querySingleWithParams returning a future and chain with await()", replaceWith = ReplaceWith("querySingleWithParams(sql, arguments).await()"))
suspend fun JDBCClient.querySingleWithParamsAwait(sql: String, arguments: JsonArray): JsonArray? {
return awaitResult {
this.querySingleWithParams(sql, arguments, it)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy