I hope you can help me with this.
I've imported 3 json files in R and used streamed in to get 3 df's on which I can do queries with sqldf. On 2 of them it works fine, but on the third one I get this error when using:
sqldf('select * from fixfull where checksum is "121"')
Error in rsqlite_bind_rows(rs@ptr, value) :
Can only bind lists of raw vectors (or NULL)
I get the same error message for all other queries on this df. Don't know what is wrong specifically, and can't find other related errors on stackoverflow.
Could someone help?
Thanks a lot!!
Vmontreal