You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When dbGetQuery from sqlite table which contains big ints, the result is not right.
for eample:
table: test
id (integer), price(double)
4294967296, 3.1415
then dbGetQuery(con, "select * from test") will return
id,price
0,3.1415
When dbGetQuery from sqlite table which contains big ints, the result is not right.
for eample:
table: test
id (integer), price(double)
4294967296, 3.1415
then dbGetQuery(con, "select * from test") will return
id,price
0,3.1415