通过 Objective C 将 .csv 文件导入 SQlite

发布于 2024-09-18 15:21:59 字数 203 浏览 5 评论 0原文

我可以通过命令行将 .csv 文件导入到 SQlite 表中。它工作得很好。我想知道的是是否可以通过 Objective C 代码做完全相同的事情..意思是执行像 .mode csv && 这样的命令.导入文件.csv表。

sqlite3 接口执行所有正常的 SQL 语句执行,如选择、删除等。但我不确定导入部分。

有人指导吗?提前致谢 问候

I am able to import .csv files into a SQlite table through the command line. It works nice and fine. What i wanted to know was is it possible to do the exact same thing through Objective C code..meaning execute commands like .mode csv && .import file.csv table.

The interface sqlite3 does all normal SQL statement execution like selecting, deleting etc..But i am not sure about the importing part.

Any guidance anyone? Thanks in advance
Regards

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

奶茶白久 2024-09-25 15:21:59

您可以尝试 ImportingFiles 页面 中描述的虚拟表。但是,您最好只使用现有的 Objective-C CSV 解析器,然后自己插入每一行(在事务内)。请参阅
任何人都知道用于 Objective-C 的良好 csv 到 NSArray 解析器
首先。

You can try the virtual table described on the ImportingFiles page. However, you may best off just using an existing Objective-C CSV parser, then inserting each row yourself (within a transaction). See
Anyone know of a good csv to NSArray parser for objective-c
for a start.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文