search for: fmdex

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

Did you mean: fedex
2006 Feb 20
1
sqlSave
...Microsoft Access with a few rows inputs. Using sqlQuery, I found that the date field was retrieved as POSIXct value. Then I made a data.frame with POSIXct as the data type for dates. However, I received the following errors when I was executing the sqlSave: > price = data.frame(ticker=rep("FMDEX",5)) > price$date=c(as.POSIXct("2003-1-1"), as.POSIXct("2003-1-2"), as.POSIXct("2003-1-3"), as.POSIXct("2003-1-4"), as.POSIXct("2003-1-5")) > price$price=1:5 > price ticker date price 1 FMDEX 2003-01-01 1 2 FMDEX 2003-01-...