dbGetRowsAffected,DatabaseConnectorDbiResult-method | R Documentation |
This method returns the number of rows that were added, deleted, or updated by a data manipulation statement.
\Sexpr[results=rd,stage=render]{DBI:::methods_as_rd("dbGetRowsAffected")}## S4 method for signature 'DatabaseConnectorDbiResult'
dbGetRowsAffected(res, ...)
res |
An object inheriting from DBIResult. |
... |
Other arguments passed on to methods. |
dbGetRowsAffected()
returns a scalar number (integer or numeric),
the number of rows affected by a data manipulation statement
issued with dbSendStatement()
.
The value is available directly after the call
and does not change after calling dbFetch()
.
For queries issued with dbSendQuery()
,
zero is returned before
and after the call to dbFetch()
.
Other DBIResult generics:
DBIResult-class
,
dbBind()
,
dbClearResult()
,
dbColumnInfo()
,
dbFetch()
,
dbGetInfo()
,
dbGetRowCount()
,
dbGetStatement()
,
dbHasCompleted()
,
dbIsReadOnly()
,
dbIsValid()
,
dbQuoteIdentifier()
,
dbQuoteLiteral()
,
dbQuoteString()
,
dbUnquoteIdentifier()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.