Skip to content
Prev 174 / 1559 Next

(no subject)

Jason Horn wrote:
That the data type in column 1 could not be mapped to a known 
R type (type here as in "integer", "double", "logical", ...),
perhaps MYSQL_TYPE_NEWDATE.  If so, a workaround is to extract 
dates as strings, e.g.,

  SELECT CONVERT(all_months_date USING ASCII) as date, ....

and then use you favorite R date/time routine on the output data.frame.

HTH,

--
David