This method returns if the operation has completed.
A SELECT query is completed if all rows have been fetched.
A data manipulation statement is always completed.
DBI:::methods_as_rd("dbHasCompleted")
# S4 method for DatabaseConnectorJdbcResult
dbHasCompleted(res, ...)dbHasCompleted() returns a logical scalar.
For a query initiated by dbSendQuery() with non-empty result set,
dbHasCompleted() returns FALSE initially
and TRUE after calling dbFetch() without limit.
For a query initiated by dbSendStatement(),
dbHasCompleted() always returns TRUE.
An object inheriting from DBIResult.
Other arguments passed on to methods.
Other DBIResult generics:
DBIResult-class,
dbBind(),
dbClearResult(),
dbColumnInfo(),
dbFetch(),
dbGetInfo(),
dbGetRowCount(),
dbGetRowsAffected(),
dbGetStatement(),
dbIsReadOnly(),
dbIsValid(),
dbQuoteIdentifier(),
dbQuoteLiteral(),
dbQuoteString(),
dbUnquoteIdentifier()