DBI methods for Kusto queries and commands
# S4 method for AzureKustoConnection,character
dbGetQuery(conn, statement, ...)# S4 method for AzureKustoConnection
dbSendQuery(conn, statement, ...)
# S4 method for AzureKustoResult
dbFetch(res, n = -1, ...)
# S4 method for AzureKustoConnection,character
dbSendStatement(conn, statement, ...)
# S4 method for AzureKustoConnection,character
dbExecute(conn, statement, ...)
# S4 method for AzureKustoConnection,character
dbListFields(conn, name, ...)
# S4 method for AzureKustoResult
dbColumnInfo(res, ...)
An AzureKustoConnection object.
A string containing a Kusto query or control command.
Further arguments passed to run_query
.
An AzureKustoResult resultset object
The number of rows to return. Not used.
For dbListFields
, a table name.
These are the basic DBI functions to query the database. Note that Kusto only supports synchronous queries and commands; in particular, dbSendQuery
and dbSendStatement
will wait for the query or statement to complete, rather than returning immediately.
dbSendStatement
and dbExecute
are meant for running Kusto control commands, and will throw an error if passed a regular query. dbExecute
also returns the entire result of running the command, rather than simply a row count.
dbConnect, dbReadTable, dbWriteTable, run_query