I have the exact opposite problem as in this question. sqldf is converting dates from GMT/UTC to localtime. How do I prevent this behavior? Note: I use the lubridate package to convert the date string to POSIXct.
dates <- c("9/12/2010 0:25","9/12/2010 23:22","9/10/2010 1:55")
foo <- data.frame(dates=mdy_hm(dates))
returns
dates
1 2010-09-12 00:25:00
2 2010-09-12 23:22:00
3 2010-09-10 01:55:00
whereas
bar <- sqldf("SELECT * FROM foo")
returns
dates
1 2010-09-11 19:25:00
2 2010-09-12 18:22:00
3 2010-09-09 20:55:00

Sys.getlocale('LC_TIME')– agstudy Feb 22 at 21:59DF <- data.frame(dates = as.POSIXct(dates, format = "%m/%d/%Y %M:%H")); sqldf("select * from DF")it will work but I will look into it further. For further discussion try: groups.google.com/group/sqldf – G. Grothendieck Feb 23 at 1:29