Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
从我之前的问题中,我知道了插入数组的方式。
现在我想在表中插入大量数据。从 snappydata 的这个引用中,我能够将大量数据导入表中。但是当我尝试导入像 Array 这样的复杂数据类型时,它不支持。
CSV sample: 'name',1,[1,2,4] or 'name',1,array(1,2,4)
谁能告诉我如何将数组从 CSV 文件插入到表中?
我通过将 CSV 转换为 JSON 解决了上述问题。我按照 json 的文档到 snappydata。