search for: tickdb01

Displaying 1 result from an estimated 1 matches for "tickdb01".

2009 Nov 30
1
RSQLite does not read very large values correctly
...es: OrderID Day TimeToclose 1 2009-11-25 29467907000 2 2009-11-25 29467907000 3 2009-11-25 29467907000 Now I run this R Code: > library("DBI") > library("RSQLite") > > # DB Connection > con <- dbConnect(dbDriver("SQLite"), "C:/Temp/TickDB01.db") > raw_Data <- dbGetQuery(con, "SELECT OrderID, Day, TimeToClose FROM Tr_TickData WHERE OrderID in (1,2,3)") > raw_Data OrderID Day TimeToClose 1 1 2009-11-25 -596864072 2 2 2009-11-25 -596864072 3 3 2009-11-25 -596864072 The values are t...