Description Usage Arguments See Also Examples
Executes the statement, returning the number of affected rows or objects
1 2 3 |
conn |
an object of [KineticaConnection-class] |
statement |
character |
... |
Other parameters passed on to methods. |
params |
a set of values |
Other KineticaConnection methods: dbAppendTable
,
dbCreateTable
,
dbDataType,KineticaConnection-method
,
dbDisconnect,KineticaConnection-method
,
dbExistsTable
, dbGetInfo
,
dbGetQuery,KineticaConnection,character-method
,
dbIsValid
, dbListFields
,
dbListObjects,KineticaConnection-method
,
dbListResults,KineticaConnection-method
,
dbListTables,KineticaConnection-method
,
dbReadTable
, dbRemoveTable
,
dbSendQuery,KineticaConnection,character-method
,
dbSendStatement,KineticaConnection,character-method
,
dbWriteTable
,
show,KineticaDriver-method
,
sqlCreateTable,KineticaConnection-method
,
transactions
1 2 3 4 5 6 7 8 9 10 | ## Not run:
con <- dbConnect(Kinetica(), url = "http://localhost:9191")
dbCreateTable(con, "tableA", data.frame(a = 1))
dbExistsTable(con, "tableA")
# TRUE
dbExecute(con, "DROP TABLE tableA")
# 1
dbDisconnect(con)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.