These methods largely wrap RMariaDB
methods with small tweaks to work with
Dolt databases.
# S4 method for DoltConnection,character
dbSendQuery(conn, statement, params = NULL, ...)
# S4 method for DoltConnection,character
dbSendStatement(conn, statement, params = NULL, ...)
# S4 method for DoltResult
dbClearResult(res, ...)
# S4 method for DoltConnection
dbDisconnect(conn, ...)
an DoltConnection object.
a character vector of length one specifying the SQL statement that should be executed. Only a single SQL statement should be provided.
A list of query parameters to be substituted into a parameterized query.
Unused. Needed for compatibility with generic.#' @export
A DoltResult object.