By default when I use dbGetQuery()
from the DBI
package it returns columns of type integer64
as the integer64
class of the bit64
.
I then use dplyr
to try and filter and manipulate my results but come into issues as dplyr
does not support objects of type integer64
.
Is it possible to set dbGetQuery()
to return integer64
columns as class integer
?
dbGetQuery()
instead of doing it at that stage? – PuerilityCAST(... as integer32)
within the query; or (c) take it to the issues board for whichever ODBC driver you are using (perhapsodbc
). I think the latter is most appropriate for the long-term, but sincebit64
is still not globally used/accepted in R, it may be an uphill battle. – Schoolman