Below is a reproducible example with warnings. I have done some research and some say that RSQLITE version causes this but not sure which version, so is there any way to prevent these warnings in sqldf. Thanks in advance
(mt <- mtcars[1:5,1:5])
sqldf(c('update mt set cyl=5 where cyl>5', 'select * from mt'))
Warning message: In result_fetch(res@ptr, n = n) : SQL statements must be issued with dbExecute() or dbSendStatement() instead of dbGetQuery() or dbSendQuery().