Open jalvesaq opened 7 years ago
The following warning is being displayed sometimes:
In rsqlite_fetch(res@ptr, n = n): Don't need to call dbFetch() for statements, only for queries
According to DBI documentation, dbGetQuery() should be called only for SELECT queries. Users should call dbExecute() for other statements.
dbGetQuery()
SELECT
dbExecute()
The following warning is being displayed sometimes:
According to DBI documentation,
dbGetQuery()
should be called only forSELECT
queries. Users should calldbExecute()
for other statements.