Convert value to string before escape it

Originall ftcsv will be failed when encoding a number field content
This commit is contained in:
cch 2016-03-29 14:20:23 +08:00
parent 174d0efe64
commit 93b9cc6a65

View File

@ -323,6 +323,7 @@ end
-- a function that delimits " to "", used by the writer -- a function that delimits " to "", used by the writer
local function delimitField(field) local function delimitField(field)
local field = tostring(field)
if field:find('"') then if field:find('"') then
return field:gsub('"', '""') return field:gsub('"', '""')
else else