RODBC string getting truncated

后端 未结 3 1161
既然无缘
既然无缘 2021-01-18 11:17

I am fetching data from MySql Server into R using RODBC.
So in one column of the database is a character vector

SELECT MAX(CHAR_LENGTH(column)) FROM req         


        
3条回答
  •  孤街浪徒
    2021-01-18 11:46

    The PostgreSQL ODBC driver has a variable called MaxLongVarcharSize that I have found set to 8190 by default (I've used it both on Windows and Ubuntu). It is possible that the MySQL ODBC driver has a similar variable set to 255.

提交回复
热议问题