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, ...)

Arguments

conn

an DoltConnection object.

statement

a character vector of length one specifying the SQL statement that should be executed. Only a single SQL statement should be provided.

params

A list of query parameters to be substituted into a parameterized query.

...

Unused. Needed for compatibility with generic.#' @export

res

A DoltResult object.